TV Script Generation

In this project, you'll generate your own Simpsons TV scripts using RNNs. You'll be using part of the Simpsons dataset of scripts from 27 seasons. The Neural Network you'll build will generate a new TV script for a scene at Moe's Tavern.

Get the Data

The data is already provided for you. You'll be using a subset of the original dataset. It consists of only the scenes in Moe's Tavern. This doesn't include other versions of the tavern, like "Moe's Cavern", "Flaming Moe's", "Uncle Moe's Family Feed-Bag", etc..

In [1]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import helper

data_dir = './data/simpsons/moes_tavern_lines.txt'
text = helper.load_data(data_dir)
# Ignore notice, since we don't use it for analysing the data
text = text[81:]

Explore the Data

Play around with view_sentence_range to view different parts of the data.

In [2]:
view_sentence_range = (0, 10)

"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import numpy as np

print('Dataset Stats')
print('Roughly the number of unique words: {}'.format(len({word: None for word in text.split()})))
scenes = text.split('\n\n')
print('Number of scenes: {}'.format(len(scenes)))
sentence_count_scene = [scene.count('\n') for scene in scenes]
print('Average number of sentences in each scene: {}'.format(np.average(sentence_count_scene)))

sentences = [sentence for scene in scenes for sentence in scene.split('\n')]
print('Number of lines: {}'.format(len(sentences)))
word_count_sentence = [len(sentence.split()) for sentence in sentences]
print('Average number of words in each line: {}'.format(np.average(word_count_sentence)))

print()
print('The sentences {} to {}:'.format(*view_sentence_range))
print('\n'.join(text.split('\n')[view_sentence_range[0]:view_sentence_range[1]]))
Dataset Stats
Roughly the number of unique words: 11492
Number of scenes: 262
Average number of sentences in each scene: 15.248091603053435
Number of lines: 4257
Average number of words in each line: 11.50434578341555

The sentences 0 to 10:
Moe_Szyslak: (INTO PHONE) Moe's Tavern. Where the elite meet to drink.
Bart_Simpson: Eh, yeah, hello, is Mike there? Last name, Rotch.
Moe_Szyslak: (INTO PHONE) Hold on, I'll check. (TO BARFLIES) Mike Rotch. Mike Rotch. Hey, has anybody seen Mike Rotch, lately?
Moe_Szyslak: (INTO PHONE) Listen you little puke. One of these days I'm gonna catch you, and I'm gonna carve my name on your back with an ice pick.
Moe_Szyslak: What's the matter Homer? You're not your normal effervescent self.
Homer_Simpson: I got my problems, Moe. Give me another one.
Moe_Szyslak: Homer, hey, you should not drink to forget your problems.
Barney_Gumble: Yeah, you should only drink to enhance your social skills.


Implement Preprocessing Functions

The first thing to do to any dataset is preprocessing. Implement the following preprocessing functions below:

  • Lookup Table
  • Tokenize Punctuation

Lookup Table

To create a word embedding, you first need to transform the words to ids. In this function, create two dictionaries:

  • Dictionary to go from the words to an id, we'll call vocab_to_int
  • Dictionary to go from the id to word, we'll call int_to_vocab

Return these dictionaries in the following tuple (vocab_to_int, int_to_vocab)

In [3]:
import numpy as np
import problem_unittests as tests

def create_lookup_tables(text):
    """
    Create lookup tables for vocabulary
    :param text: The text of tv scripts split into words
    :return: A tuple of dicts (vocab_to_int, int_to_vocab)
    """
    # TODO: Implement Function
    voc = set(text)
    voc_to_int = {c: i for i, c in enumerate(voc)}
    int_to_voc = dict( enumerate(voc) )
    return voc_to_int , int_to_voc


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_create_lookup_tables(create_lookup_tables)
Tests Passed

Tokenize Punctuation

We'll be splitting the script into a word array using spaces as delimiters. However, punctuations like periods and exclamation marks make it hard for the neural network to distinguish between the word "bye" and "bye!".

Implement the function token_lookup to return a dict that will be used to tokenize symbols like "!" into "||Exclamation_Mark||". Create a dictionary for the following symbols where the symbol is the key and value is the token:

  • Period ( . )
  • Comma ( , )
  • Quotation Mark ( " )
  • Semicolon ( ; )
  • Exclamation mark ( ! )
  • Question mark ( ? )
  • Left Parentheses ( ( )
  • Right Parentheses ( ) )
  • Dash ( -- )
  • Return ( \n )

This dictionary will be used to token the symbols and add the delimiter (space) around it. This separates the symbols as it's own word, making it easier for the neural network to predict on the next word. Make sure you don't use a token that could be confused as a word. Instead of using the token "dash", try using something like "||dash||".

In [4]:
def token_lookup():
    """
    Generate a dict to turn punctuation into a token.
    :return: Tokenize dictionary where the key is the punctuation and the value is the token
    """
    # TODO: Implement Function
    values = ['||Period||','||Comma||','||Quotation_Mark||','||Semicolon||','||Exclamation_mark||','||Question_mark||','||Left_Parentheses||','||Right_Parentheses||','||Dash||','||Return||']
    keys = ['.', ',', '"', ';', '!', '?', '(', ')', '--','\n'] 
    token = dict(zip(keys,values))    
    return token

"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_tokenize(token_lookup)
Tests Passed

Preprocess all the data and save it

Running the code cell below will preprocess all the data and save it to file.

In [5]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
# Preprocess Training, Validation, and Testing Data
helper.preprocess_and_save_data(data_dir, token_lookup, create_lookup_tables)

Check Point

This is your first checkpoint. If you ever decide to come back to this notebook or have to restart the notebook, you can start from here. The preprocessed data has been saved to disk.

In [6]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import helper
import numpy as np
import problem_unittests as tests

int_text, vocab_to_int, int_to_vocab, token_dict = helper.load_preprocess()

Build the Neural Network

You'll build the components necessary to build a RNN by implementing the following functions below:

  • get_inputs
  • get_init_cell
  • get_embed
  • build_rnn
  • build_nn
  • get_batches

Check the Version of TensorFlow and Access to GPU

In [7]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
from distutils.version import LooseVersion
import warnings
import tensorflow as tf

# Check TensorFlow Version
assert LooseVersion(tf.__version__) >= LooseVersion('1.0'), 'Please use TensorFlow version 1.0 or newer'
print('TensorFlow Version: {}'.format(tf.__version__))

# Check for a GPU
if not tf.test.gpu_device_name():
    warnings.warn('No GPU found. Please use a GPU to train your neural network.')
else:
    print('Default GPU Device: {}'.format(tf.test.gpu_device_name()))
TensorFlow Version: 1.0.0
Default GPU Device: /gpu:0

Input

Implement the get_inputs() function to create TF Placeholders for the Neural Network. It should create the following placeholders:

  • Input text placeholder named "input" using the TF Placeholder name parameter.
  • Targets placeholder
  • Learning Rate placeholder

Return the placeholders in the following tuple (Input, Targets, LearningRate)

In [8]:
def get_inputs():
    """
    Create TF Placeholders for input, targets, and learning rate.
    :return: Tuple (input, targets, learning rate)
    """
    # TODO: Implement Function
    input = tf.placeholder(tf.int32, shape=(None,None), name="input")
    targets = tf.placeholder(tf.int32, shape=(None,None))
    learning_rate = tf.placeholder(tf.float32, shape=None)
    return input, targets, learning_rate



"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_get_inputs(get_inputs)
Tests Passed

Build RNN Cell and Initialize

Stack one or more BasicLSTMCells in a MultiRNNCell.

  • The Rnn size should be set using rnn_size
  • Initalize Cell State using the MultiRNNCell's zero_state() function
    • Apply the name "initial_state" to the initial state using tf.identity()

Return the cell and initial state in the following tuple (Cell, InitialState)

In [9]:
def get_init_cell(batch_size, rnn_size):
    """
    Create an RNN Cell and initialize it.
    :param batch_size: Size of batches
    :param rnn_size: Size of RNNs
    :return: Tuple (cell, initialize state)
    """
    # TODO: Implement Function
    lstm = tf.contrib.rnn.BasicLSTMCell(rnn_size)
    cell = tf.contrib.rnn.MultiRNNCell([lstm])
    initial_state = tf.identity(cell.zero_state(batch_size,tf.int32),name="initial_state")
     
    return cell, initial_state

"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_get_init_cell(get_init_cell)
Tests Passed

Word Embedding

Apply embedding to input_data using TensorFlow. Return the embedded sequence.

In [10]:
def get_embed(input_data, vocab_size, embed_dim):
    """
    Create embedding for <input_data>.
    :param input_data: TF placeholder for text input.
    :param vocab_size: Number of words in vocabulary.
    :param embed_dim: Number of embedding dimensions
    :return: Embedded input.
    """
    # TODO: Implement Function
    embedding = tf.Variable(tf.random_uniform((vocab_size, embed_dim), -1, 1))
    embed = tf.nn.embedding_lookup(embedding, input_data)
    return embed


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_get_embed(get_embed)
Tests Passed

Build RNN

You created a RNN Cell in the get_init_cell() function. Time to use the cell to create a RNN.

Return the outputs and final_state state in the following tuple (Outputs, FinalState)

In [11]:
def build_rnn(cell, inputs):
    """
    Create a RNN using a RNN Cell
    :param cell: RNN Cell
    :param inputs: Input text data
    :return: Tuple (Outputs, Final State)
    """
    # TODO: Implement Function
    outputs, states = tf.nn.dynamic_rnn(cell, inputs, dtype='float32')
    final_state = tf.identity(states, name="final_state")
    return outputs, final_state


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_build_rnn(build_rnn)
Tests Passed

Build the Neural Network

Apply the functions you implemented above to:

  • Apply embedding to input_data using your get_embed(input_data, vocab_size, embed_dim) function.
  • Build RNN using cell and your build_rnn(cell, inputs) function.
  • Apply a fully connected layer with a linear activation and vocab_size as the number of outputs.

Return the logits and final state in the following tuple (Logits, FinalState)

In [12]:
def build_nn(cell, rnn_size, input_data, vocab_size, embed_dim):
    """
    Build part of the neural network
    :param cell: RNN cell
    :param rnn_size: Size of rnns
    :param input_data: Input data
    :param vocab_size: Vocabulary size
    :param embed_dim: Number of embedding dimensions
    :return: Tuple (Logits, FinalState)
    """
    # TODO: Implement Function
    embed = get_embed(input_data, vocab_size, rnn_size)    
    rnn, final_state = build_rnn(cell, embed) 
    logits = tf.contrib.layers.fully_connected(rnn, vocab_size, activation_fn=None, weights_initializer = tf.truncated_normal_initializer(stddev=0.1), biases_initializer=tf.zeros_initializer())
    return logits, final_state


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_build_nn(build_nn)
Tests Passed

Batches

Implement get_batches to create batches of input and targets using int_text. The batches should be a Numpy array with the shape (number of batches, 2, batch size, sequence length). Each batch contains two elements:

  • The first element is a single batch of input with the shape [batch size, sequence length]
  • The second element is a single batch of targets with the shape [batch size, sequence length]

If you can't fill the last batch with enough data, drop the last batch.

For exmple, get_batches([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20], 3, 2) would return a Numpy array of the following:

[
  # First Batch
  [
    # Batch of Input
    [[ 1  2], [ 7  8], [13 14]]
    # Batch of targets
    [[ 2  3], [ 8  9], [14 15]]
  ]

  # Second Batch
  [
    # Batch of Input
    [[ 3  4], [ 9 10], [15 16]]
    # Batch of targets
    [[ 4  5], [10 11], [16 17]]
  ]

  # Third Batch
  [
    # Batch of Input
    [[ 5  6], [11 12], [17 18]]
    # Batch of targets
    [[ 6  7], [12 13], [18  1]]
  ]
]

Notice that the last target value in the last batch is the first input value of the first batch. In this case, 1. This is a common technique used when creating sequence batches, although it is rather unintuitive.

In [13]:
def get_batches(int_text, batch_size, seq_length):
    """
    Return batches of input and target
    :param int_text: Text with the words replaced by their ids
    :param batch_size: The size of batch
    :param seq_length: The length of sequence
    :return: Batches as a Numpy array
    """
    # TODO: Implement Function
    n_batches = (len(int_text) - 1) // (batch_size * seq_length)
    batches = np.zeros((n_batches, 2, batch_size, seq_length),dtype=np.int32)
    for b in range(n_batches):
        for j in range(batch_size):
            batches[b][0][j] = int_text[seq_length*(n_batches*j+b)   : seq_length*(n_batches*j+b+1)]
            batches[b][1][j] = int_text[seq_length*(n_batches*j+b)+1 : seq_length*(n_batches*j+b+1)+1]
    
    batches[b][1][batch_size-1][seq_length-1] = batches[0][0][0][0]
    return batches


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_get_batches(get_batches)
Tests Passed

Neural Network Training

Hyperparameters

Tune the following parameters:

  • Set num_epochs to the number of epochs.
  • Set batch_size to the batch size.
  • Set rnn_size to the size of the RNNs.
  • Set embed_dim to the size of the embedding.
  • Set seq_length to the length of sequence.
  • Set learning_rate to the learning rate.
  • Set show_every_n_batches to the number of batches the neural network should print progress.
In [20]:
# Number of Epochs
num_epochs = 80
# Batch Size
batch_size = 100
# RNN Size
rnn_size = 512
# Embedding Dimension Size
embed_dim = 256
# Sequence Length
seq_length = 10
# Learning Rate
learning_rate = 0.001
# Show stats for every n number of batches
show_every_n_batches = 100

"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
save_dir = './save'

Build the Graph

Build the graph using the neural network you implemented.

In [21]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
from tensorflow.contrib import seq2seq

train_graph = tf.Graph()
with train_graph.as_default():
    vocab_size = len(int_to_vocab)
    input_text, targets, lr = get_inputs()
    input_data_shape = tf.shape(input_text)
    cell, initial_state = get_init_cell(input_data_shape[0], rnn_size)
    logits, final_state = build_nn(cell, rnn_size, input_text, vocab_size, embed_dim)

    # Probabilities for generating words
    probs = tf.nn.softmax(logits, name='probs')

    # Loss function
    cost = seq2seq.sequence_loss(
        logits,
        targets,
        tf.ones([input_data_shape[0], input_data_shape[1]]))

    # Optimizer
    optimizer = tf.train.AdamOptimizer(lr)

    # Gradient Clipping
    gradients = optimizer.compute_gradients(cost)
    capped_gradients = [(tf.clip_by_value(grad, -1., 1.), var) for grad, var in gradients if grad is not None]
    train_op = optimizer.apply_gradients(capped_gradients)

Train

Train the neural network on the preprocessed data. If you have a hard time getting a good loss, check the forms to see if anyone is having the same problem.

In [22]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
batches = get_batches(int_text, batch_size, seq_length)

with tf.Session(graph=train_graph) as sess:
    sess.run(tf.global_variables_initializer())

    for epoch_i in range(num_epochs):
        state = sess.run(initial_state, {input_text: batches[0][0]})

        for batch_i, (x, y) in enumerate(batches):
            feed = {
                input_text: x,
                targets: y,
                initial_state: state,
                lr: learning_rate}
            train_loss, state, _ = sess.run([cost, final_state, train_op], feed)

            # Show every <show_every_n_batches> batches
            if (epoch_i * len(batches) + batch_i) % show_every_n_batches == 0:
                print('Epoch {:>3} Batch {:>4}/{}   train_loss = {:.3f}'.format(
                    epoch_i,
                    batch_i,
                    len(batches),
                    train_loss))

    # Save Model
    saver = tf.train.Saver()
    saver.save(sess, save_dir)
    print('Model Trained and Saved')
Epoch   0 Batch    0/69   train_loss = 8.856
Epoch   1 Batch   31/69   train_loss = 5.020
Epoch   2 Batch   62/69   train_loss = 4.328
Epoch   4 Batch   24/69   train_loss = 3.769
Epoch   5 Batch   55/69   train_loss = 3.340
Epoch   7 Batch   17/69   train_loss = 2.883
Epoch   8 Batch   48/69   train_loss = 2.577
Epoch  10 Batch   10/69   train_loss = 2.061
Epoch  11 Batch   41/69   train_loss = 1.907
Epoch  13 Batch    3/69   train_loss = 1.565
Epoch  14 Batch   34/69   train_loss = 1.353
Epoch  15 Batch   65/69   train_loss = 1.218
Epoch  17 Batch   27/69   train_loss = 1.005
Epoch  18 Batch   58/69   train_loss = 0.839
Epoch  20 Batch   20/69   train_loss = 0.723
Epoch  21 Batch   51/69   train_loss = 0.610
Epoch  23 Batch   13/69   train_loss = 0.547
Epoch  24 Batch   44/69   train_loss = 0.566
Epoch  26 Batch    6/69   train_loss = 0.490
Epoch  27 Batch   37/69   train_loss = 0.494
Epoch  28 Batch   68/69   train_loss = 0.485
Epoch  30 Batch   30/69   train_loss = 0.501
Epoch  31 Batch   61/69   train_loss = 0.381
Epoch  33 Batch   23/69   train_loss = 0.411
Epoch  34 Batch   54/69   train_loss = 0.388
Epoch  36 Batch   16/69   train_loss = 0.433
Epoch  37 Batch   47/69   train_loss = 0.400
Epoch  39 Batch    9/69   train_loss = 0.434
Epoch  40 Batch   40/69   train_loss = 0.392
Epoch  42 Batch    2/69   train_loss = 0.439
Epoch  43 Batch   33/69   train_loss = 0.432
Epoch  44 Batch   64/69   train_loss = 0.398
Epoch  46 Batch   26/69   train_loss = 0.403
Epoch  47 Batch   57/69   train_loss = 0.401
Epoch  49 Batch   19/69   train_loss = 0.377
Epoch  50 Batch   50/69   train_loss = 0.426
Epoch  52 Batch   12/69   train_loss = 0.417
Epoch  53 Batch   43/69   train_loss = 0.405
Epoch  55 Batch    5/69   train_loss = 0.420
Epoch  56 Batch   36/69   train_loss = 0.380
Epoch  57 Batch   67/69   train_loss = 0.384
Epoch  59 Batch   29/69   train_loss = 0.439
Epoch  60 Batch   60/69   train_loss = 0.359
Epoch  62 Batch   22/69   train_loss = 0.412
Epoch  63 Batch   53/69   train_loss = 0.393
Epoch  65 Batch   15/69   train_loss = 0.420
Epoch  66 Batch   46/69   train_loss = 0.425
Epoch  68 Batch    8/69   train_loss = 0.376
Epoch  69 Batch   39/69   train_loss = 0.392
Epoch  71 Batch    1/69   train_loss = 0.417
Epoch  72 Batch   32/69   train_loss = 0.381
Epoch  73 Batch   63/69   train_loss = 0.415
Epoch  75 Batch   25/69   train_loss = 0.414
Epoch  76 Batch   56/69   train_loss = 0.396
Epoch  78 Batch   18/69   train_loss = 0.355
Epoch  79 Batch   49/69   train_loss = 0.316
Model Trained and Saved

Save Parameters

Save seq_length and save_dir for generating a new TV script.

In [23]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
# Save parameters for checkpoint
helper.save_params((seq_length, save_dir))

Checkpoint

In [24]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import tensorflow as tf
import numpy as np
import helper
import problem_unittests as tests

_, vocab_to_int, int_to_vocab, token_dict = helper.load_preprocess()
seq_length, load_dir = helper.load_params()

Implement Generate Functions

Get Tensors

Get tensors from loaded_graph using the function get_tensor_by_name(). Get the tensors using the following names:

  • "input:0"
  • "initial_state:0"
  • "final_state:0"
  • "probs:0"

Return the tensors in the following tuple (InputTensor, InitialStateTensor, FinalStateTensor, ProbsTensor)

In [25]:
def get_tensors(loaded_graph):
    """
    Get input, initial state, final state, and probabilities tensor from <loaded_graph>
    :param loaded_graph: TensorFlow graph loaded from file
    :return: Tuple (InputTensor, InitialStateTensor, FinalStateTensor, ProbsTensor)
    """
    # TODO: Implement Function
    input = loaded_graph.get_tensor_by_name('input:0')
    initial_state = loaded_graph.get_tensor_by_name('initial_state:0')
    final_state = loaded_graph.get_tensor_by_name('final_state:0')
    probs = loaded_graph.get_tensor_by_name('probs:0')
    return input, initial_state, final_state, probs



"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_get_tensors(get_tensors)
Tests Passed

Choose Word

Implement the pick_word() function to select the next word using probabilities.

In [26]:
def pick_word(probabilities, int_to_vocab):
    """
    Pick the next word in the generated text
    :param probabilities: Probabilites of the next word
    :param int_to_vocab: Dictionary of word ids as the keys and words as the values
    :return: String of the predicted word
    """
    # TODO: Implement Function
    print(int_to_vocab)
    print(probabilities)
    x=np.random.choice(len(probabilities), 1, p=probabilities)    
    return int_to_vocab[x[0]]

"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_pick_word(pick_word)
{0: 'this', 1: 'is', 2: 'a', 3: 'test'}
[ 0.1   0.8   0.05  0.05]
Tests Passed

Generate TV Script

This will generate the TV script for you. Set gen_length to the length of TV script you want to generate.

In [ ]:
gen_length = 200
# homer_simpson, moe_szyslak, or Barney_Gumble
prime_word = 'moe_szyslak'

"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
loaded_graph = tf.Graph()
with tf.Session(graph=loaded_graph) as sess:
    # Load saved model
    loader = tf.train.import_meta_graph(load_dir + '.meta')
    loader.restore(sess, load_dir)

    # Get Tensors from loaded model
    input_text, initial_state, final_state, probs = get_tensors(loaded_graph)

    # Sentences generation setup
    gen_sentences = [prime_word + ':']
    prev_state = sess.run(initial_state, {input_text: np.array([[1]])})

    # Generate sentences
    for n in range(gen_length):
        # Dynamic Input
        dyn_input = [[vocab_to_int[word] for word in gen_sentences[-seq_length:]]]
        dyn_seq_length = len(dyn_input[0])

        # Get Prediction
        probabilities, prev_state = sess.run(
            [probs, final_state],
            {input_text: dyn_input, initial_state: prev_state})
        
        pred_word = pick_word(probabilities[dyn_seq_length-1], int_to_vocab)

        gen_sentences.append(pred_word)
    
    # Remove tokens
    tv_script = ' '.join(gen_sentences)
    for key, token in token_dict.items():
        ending = ' ' if key in ['\n', '(', '"'] else ''
        tv_script = tv_script.replace(' ' + token.lower(), key)
    tv_script = tv_script.replace('\n ', '\n')
    tv_script = tv_script.replace('( ', '(')
        
    print(tv_script)
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.64661085e-08   3.69654032e-07   5.95131979e-08 ...,   1.09520101e-07
   2.15883826e-08   9.04724402e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.52308960e-10   2.84852281e-10   8.20703616e-10 ...,   2.97590441e-09
   6.41255449e-09   4.75794959e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.97623171e-09   2.29325448e-11   3.79898973e-10 ...,   1.19659649e-09
   4.32656044e-09   6.38751407e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.65621775e-10   1.16072933e-11   7.72505254e-11 ...,   1.30296940e-10
   1.65826991e-10   4.23232205e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.91476288e-11   7.11458323e-12   8.98449093e-11 ...,   2.08758948e-11
   3.05958973e-11   3.84873633e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.42647658e-09   3.04790887e-10   1.09834745e-10 ...,   2.21271751e-10
   9.05576059e-10   2.12762208e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.80649198e-10   7.25788318e-11   5.61875990e-10 ...,   1.16809382e-10
   9.25219013e-09   7.01181169e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.53953508e-11   7.73357073e-12   2.33654138e-11 ...,   3.17398430e-12
   1.20007326e-09   1.52651199e-12]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.31376038e-10   3.30827067e-11   1.49219448e-09 ...,   3.82329064e-11
   2.51073135e-10   1.65566644e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.39352563e-09   4.66300748e-11   1.41295572e-10 ...,   5.93872694e-12
   3.35664163e-10   4.11654405e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  9.63790114e-09   4.47689247e-11   1.65982506e-09 ...,   3.53336471e-10
   1.97425631e-08   1.78838638e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.72210812e-09   1.37809775e-09   3.20094506e-11 ...,   2.14997620e-11
   3.60347663e-09   1.54652194e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.22706684e-09   1.20428079e-09   1.47258178e-11 ...,   4.38814055e-11
   6.78047529e-09   1.79155080e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.28949171e-10   3.51256357e-10   9.61549868e-11 ...,   6.80924907e-14
   7.66086326e-12   9.78228262e-11]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.85477508e-05   3.94182564e-07   2.92653617e-08 ...,   5.38951150e-09
   3.02222887e-08   1.21847927e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.02576994e-05   1.87602045e-10   2.10036197e-10 ...,   1.04038937e-10
   1.12330173e-10   2.38750371e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.51487802e-05   6.44900855e-10   7.04697620e-11 ...,   6.01172757e-12
   1.97683224e-11   1.85040272e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  4.67127655e-03   3.19908249e-05   2.07090594e-08 ...,   1.67758909e-08
   7.18434364e-07   6.75870808e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  4.30404795e-10   2.52208983e-11   1.17761148e-13 ...,   3.69885261e-14
   3.02258733e-13   2.67090777e-12]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.49488005e-06   5.61753723e-07   1.18453736e-08 ...,   5.14980891e-10
   1.73783932e-10   2.70845568e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.16171485e-07   2.80333978e-08   4.29281499e-10 ...,   5.20960323e-11
   1.84014210e-11   2.56925148e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  7.66235252e-12   8.07170997e-11   1.60294792e-13 ...,   8.52251890e-14
   4.15050210e-14   9.35443021e-13]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.76397748e-07   1.20912000e-06   4.73979134e-10 ...,   4.38735409e-10
   3.22327234e-11   9.29584409e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.05943320e-06   1.65678848e-05   1.66826020e-08 ...,   1.17493224e-08
   1.60131108e-08   2.49536839e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  8.07063572e-09   1.78977473e-07   1.50434616e-08 ...,   8.16951645e-11
   1.33277622e-09   8.34767366e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  9.80761916e-10   1.28633859e-08   3.91427273e-11 ...,   6.02756248e-11
   5.33408984e-10   5.13499678e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.64903457e-07   1.17024172e-06   4.76764228e-07 ...,   1.54038293e-09
   1.15748699e-05   2.36739052e-05]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.55240273e-11   5.59793288e-11   4.72853839e-11 ...,   2.48243223e-12
   6.85614454e-10   8.79523954e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.07698618e-07   4.69236738e-08   1.40113721e-09 ...,   3.07765508e-10
   4.92382579e-09   6.23918339e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  7.41474970e-09   1.10719249e-07   1.41054252e-10 ...,   2.58828427e-11
   8.36957437e-09   3.41541337e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.96949360e-07   1.74654235e-06   1.26408803e-08 ...,   1.26490090e-08
   2.03619294e-07   8.04371894e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  4.24561279e-07   4.95869654e-06   1.17915853e-07 ...,   7.72299913e-08
   4.14164879e-06   3.46229604e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.05515230e-10   5.99284178e-09   3.55517803e-11 ...,   5.32046129e-10
   3.57931675e-08   1.85161930e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.06074356e-06   2.24730883e-07   4.13267891e-08 ...,   5.01639761e-07
   5.88085925e-07   4.66923296e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.63049941e-07   3.09490034e-08   2.10095344e-10 ...,   1.04864199e-07
   9.84110784e-08   1.07858487e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  9.59458589e-07   1.12535847e-08   1.56862873e-11 ...,   9.88425519e-09
   1.02433777e-08   2.37445406e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.48495207e-08   3.37259216e-08   1.27442862e-10 ...,   4.87033347e-09
   2.03285992e-08   4.03147649e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.79796103e-10   3.43644313e-09   1.86705859e-12 ...,   3.65577790e-10
   1.52929100e-08   1.24230071e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.36925885e-07   3.89170481e-07   9.41658210e-13 ...,   3.58194754e-08
   2.37248088e-07   9.75056125e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.42440245e-07   5.72798456e-07   1.54050800e-11 ...,   3.69997565e-07
   1.37530515e-05   3.94627939e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  6.76039402e-09   3.63306150e-08   6.36275060e-11 ...,   1.73524040e-08
   2.36603242e-07   4.38454073e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.45694764e-07   4.72054529e-09   2.88734014e-09 ...,   4.59186595e-06
   1.43791103e-05   1.18543960e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  6.13711904e-07   2.83346282e-07   1.23533919e-10 ...,   4.04708125e-08
   5.72586245e-08   1.72120338e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.22292540e-05   2.82659475e-03   1.75341597e-07 ...,   6.43698399e-07
   9.25400818e-04   1.34442348e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  6.13365216e-07   2.40517039e-07   2.11906848e-09 ...,   3.53866199e-08
   1.50274630e-07   9.07326623e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.73320859e-08   1.18076233e-08   3.25933419e-10 ...,   1.74763648e-10
   4.81667882e-07   1.97878194e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  5.33154093e-07   3.77761911e-09   7.34005356e-11 ...,   4.23449453e-09
   7.79447973e-08   1.88641991e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.25277725e-08   2.92686125e-10   9.41236949e-11 ...,   6.16373549e-11
   8.56967741e-09   1.53422786e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.31297975e-05   1.01908615e-08   1.18040768e-08 ...,   1.10871907e-08
   1.71009148e-07   2.07088604e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  5.26305532e-09   4.31801483e-09   7.01994352e-10 ...,   2.49985330e-08
   6.82244308e-06   1.62732174e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.87556134e-07   3.04271914e-08   1.42631492e-07 ...,   1.44571473e-07
   2.56709882e-06   1.56943287e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.72196141e-09   1.13852749e-09   2.70018868e-10 ...,   6.21089953e-08
   6.07880466e-08   9.64749006e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.38365124e-06   6.75873191e-10   3.29867716e-10 ...,   4.74073154e-08
   1.78328197e-09   9.44445873e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.45722402e-06   1.61217656e-07   2.13487228e-09 ...,   4.07475181e-06
   1.99397664e-06   1.15154435e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.03103359e-09   1.97185468e-09   3.54583966e-11 ...,   1.98459540e-10
   2.48446402e-10   1.68250702e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.28469999e-08   1.10991252e-08   1.91693848e-11 ...,   2.57642629e-10
   9.93405469e-10   1.32814493e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  8.60505533e-09   7.24838571e-08   8.56723747e-10 ...,   5.08909759e-09
   1.27867213e-06   8.26211064e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.16674544e-08   2.91753750e-08   1.40586209e-08 ...,   7.38055617e-10
   4.14455542e-07   1.69899117e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.47479727e-07   1.19307344e-06   1.31632660e-08 ...,   4.17983195e-08
   1.66710215e-05   2.74941101e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.70515876e-08   3.94946618e-08   1.54487889e-08 ...,   1.10793348e-08
   5.13097575e-07   1.41913770e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  6.98470032e-11   2.99820657e-09   3.84172312e-11 ...,   4.44885212e-10
   1.79448523e-09   1.26021538e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.67844644e-09   2.46462886e-08   3.52073787e-10 ...,   1.39900563e-10
   2.27059616e-08   8.13044139e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  6.12024635e-08   5.46654499e-09   4.80816532e-11 ...,   6.61999400e-10
   2.27332180e-08   1.80573192e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.14111193e-10   2.31345047e-11   1.68832464e-13 ...,   1.10345877e-09
   9.35171052e-09   8.55703702e-11]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  5.70520520e-08   1.01636267e-07   9.46031933e-11 ...,   4.08504866e-06
   3.63554636e-06   1.91265926e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  4.93047381e-10   1.89916936e-08   1.07303220e-11 ...,   2.96444691e-09
   1.45653826e-06   4.10723205e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.19501264e-10   2.27103225e-09   9.44765655e-11 ...,   2.70406826e-08
   5.44144882e-07   3.51400544e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.09402363e-08   3.03064382e-07   4.57513361e-10 ...,   1.52143770e-07
   5.83165865e-06   6.98886879e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.34086647e-10   7.10744041e-09   3.24201395e-11 ...,   1.78125528e-10
   4.18827057e-07   9.86649962e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.85457400e-12   1.33539180e-10   2.05367285e-13 ...,   1.41100510e-12
   6.73808015e-12   1.32111863e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  7.29161131e-09   1.02937456e-07   2.75284353e-12 ...,   1.22409705e-09
   4.69927066e-08   8.70880790e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.21632532e-10   1.02285199e-07   1.41143312e-11 ...,   6.00654804e-10
   2.58458832e-09   4.88295404e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  8.22059860e-07   2.72556135e-05   3.34703607e-08 ...,   2.10094868e-07
   2.75637177e-07   2.16344233e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.74733810e-08   2.13909473e-07   1.78185730e-10 ...,   5.54777280e-10
   1.68623493e-09   3.00579228e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.88139059e-08   4.48841381e-11   1.80617171e-11 ...,   8.03557470e-13
   4.95539211e-13   3.59471372e-12]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.98074889e-07   8.46793284e-08   1.89854923e-10 ...,   1.25509186e-10
   3.46704609e-10   1.30500022e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.16296794e-09   8.18914181e-09   2.05875456e-11 ...,   4.01806539e-11
   4.04111189e-09   2.36653280e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.93688143e-12   6.21829194e-12   1.48646395e-12 ...,   5.77724175e-13
   2.84183250e-11   5.86398009e-13]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.27008798e-09   1.09585748e-07   3.63929709e-09 ...,   1.43567602e-09
   2.62004409e-08   2.62371325e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.74297437e-09   2.23991970e-06   1.98043734e-10 ...,   2.37864373e-09
   1.38956875e-06   1.62362390e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  8.54858229e-08   1.92771995e-06   7.42853956e-08 ...,   3.67649217e-10
   1.66407972e-07   4.93638652e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.96376909e-03   9.24203675e-07   5.19978130e-07 ...,   8.97230450e-08
   1.20718283e-07   5.61868865e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.24279623e-11   1.26994092e-11   8.55063589e-12 ...,   3.34381177e-12
   3.00325064e-12   2.57344580e-12]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.48021127e-05   8.94922232e-06   3.97271760e-05 ...,   3.75413663e-07
   4.90021819e-07   8.92786261e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.75078280e-08   3.73779972e-06   8.97179664e-09 ...,   7.86262717e-08
   1.84624582e-07   4.28595612e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.96407438e-06   1.65370584e-05   4.71054662e-09 ...,   2.34873610e-07
   1.51518435e-07   7.35918138e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.78173131e-04   4.04028128e-07   4.25756426e-08 ...,   3.21655307e-06
   2.40667930e-07   1.01897683e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.76205916e-07   2.57606310e-08   4.77564488e-10 ...,   3.50280089e-08
   1.08724061e-08   1.54258089e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  4.27182982e-07   3.60052240e-07   2.21024998e-09 ...,   1.37236964e-06
   6.61809940e-09   4.99987642e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.70340349e-05   1.07575208e-04   7.44609565e-07 ...,   1.31990368e-04
   3.64008656e-06   2.45568208e-05]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  4.94880624e-05   1.03292116e-07   3.44972628e-09 ...,   1.82587570e-07
   1.29289501e-09   1.14261866e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.25674496e-05   1.53843970e-07   4.12087076e-08 ...,   1.10430021e-08
   4.35014780e-09   2.58987200e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.64042490e-06   3.18811599e-09   1.45400122e-10 ...,   4.72740846e-10
   1.13103894e-10   1.75788077e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  4.54742849e-06   2.40498945e-08   9.24544274e-10 ...,   9.43693235e-10
   5.12123099e-09   4.12610660e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.82325728e-08   2.58762221e-08   7.99021682e-10 ...,   1.16811982e-09
   4.81293050e-09   1.27186127e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.01533305e-08   1.13756691e-07   3.77111675e-09 ...,   4.04597245e-09
   2.17307829e-07   6.33244355e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  4.20547082e-08   2.49358934e-08   5.07479059e-11 ...,   8.36178238e-10
   3.59252028e-09   4.54024764e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.43582341e-07   2.10767053e-06   4.56832119e-08 ...,   1.94029788e-08
   1.30508056e-06   5.61357410e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.46239099e-05   2.95572562e-07   4.35409397e-08 ...,   8.06123808e-08
   4.74657213e-07   2.26311772e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.57507571e-10   6.39459763e-10   1.08877884e-09 ...,   2.07318562e-09
   6.80892631e-09   2.38587172e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.39646649e-12   1.98258215e-10   3.58140411e-13 ...,   7.05781128e-11
   5.20741991e-11   3.07983630e-12]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.38900029e-08   2.09515591e-07   4.76503628e-11 ...,   8.32860749e-08
   4.86449380e-07   1.16247129e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  9.69368336e-12   7.66340047e-10   2.21639265e-12 ...,   1.29777758e-10
   6.33428254e-10   8.19807278e-11]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.14706431e-07   1.25208487e-06   1.78512956e-08 ...,   5.63665537e-07
   1.11786335e-06   2.81754842e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.93671852e-08   1.18785515e-08   1.24575822e-10 ...,   4.00189673e-11
   2.47635312e-09   5.22986632e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.76579905e-08   1.82672566e-09   5.81623361e-11 ...,   8.68803727e-12
   1.07537035e-10   4.59696003e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.45706588e-06   1.18550292e-06   1.56894259e-07 ...,   3.11780823e-09
   9.37748190e-09   3.76809197e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.05336921e-08   5.40409033e-08   1.73318956e-10 ...,   9.27939600e-11
   7.48890727e-09   1.97413128e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  8.50750510e-08   3.29973716e-07   1.64640679e-09 ...,   8.59383190e-11
   1.22831767e-09   7.18724635e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.50117887e-07   1.66391010e-06   3.82567791e-08 ...,   4.78414286e-09
   2.14728821e-08   4.94328617e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.00451345e-07   1.89290759e-07   7.45124629e-10 ...,   3.44880058e-09
   2.33553465e-09   8.88329197e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.99966436e-07   2.96672368e-07   2.45565857e-09 ...,   7.04475200e-10
   7.94726418e-09   5.00223223e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  6.88171567e-05   1.80637335e-06   3.53576468e-07 ...,   9.24482890e-09
   1.17305603e-07   1.00574880e-05]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  6.85157389e-08   5.89714677e-09   1.49470679e-11 ...,   5.39260338e-11
   2.07351913e-09   9.32114332e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  6.79228208e-07   1.05212614e-07   7.87538390e-09 ...,   4.84733864e-10
   4.10684713e-08   1.25318672e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.73555871e-08   1.46714041e-09   1.99503011e-10 ...,   1.82343637e-12
   4.98576354e-11   2.29089903e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.52485177e-06   2.60352018e-10   1.98104953e-11 ...,   1.01451052e-12
   6.81768531e-11   2.63354671e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.40093243e-08   3.04286480e-08   2.40811326e-09 ...,   1.19523919e-10
   2.41086617e-09   2.59310595e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.05388062e-09   8.95049729e-11   4.59207325e-11 ...,   8.57118456e-12
   1.93198221e-10   3.02790674e-11]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.53024376e-07   2.41069209e-08   6.22964302e-09 ...,   6.54616912e-08
   9.64183045e-08   4.28181979e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.16917261e-12   5.43650437e-11   2.55359529e-14 ...,   3.51820795e-11
   2.38019465e-10   4.88405193e-12]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.81755974e-09   4.12366363e-09   1.33816472e-10 ...,   1.02537712e-07
   9.87106978e-06   1.12273391e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  4.31121328e-12   3.16928511e-10   2.96351442e-12 ...,   1.13653720e-09
   2.82027486e-08   1.22883359e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.32275631e-11   1.12193677e-09   1.41522970e-12 ...,   2.51956211e-09
   1.07585826e-07   2.35587461e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.19876484e-10   1.20300059e-09   1.35110326e-12 ...,   2.41644216e-09
   3.65652646e-08   1.13344323e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.52415814e-11   2.94218400e-10   2.03921664e-13 ...,   2.92171648e-10
   2.44244425e-09   1.49111246e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.58606667e-07   3.61134447e-08   1.17774102e-09 ...,   9.35580829e-07
   8.85861937e-07   2.04598365e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.17577332e-07   3.07307033e-07   5.60301814e-08 ...,   1.05776871e-06
   2.65211220e-05   3.03926299e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.72260883e-09   1.83584570e-09   3.47833498e-11 ...,   4.68633909e-10
   3.22072680e-08   3.31197256e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.52309747e-06   7.16839637e-08   2.86384361e-09 ...,   4.74430522e-08
   1.85815637e-07   9.26059954e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.11034788e-07   7.31452374e-08   3.21664095e-09 ...,   8.27620905e-09
   8.99404540e-07   3.42520053e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.42323930e-10   6.30425268e-10   1.90785126e-12 ...,   2.00526943e-12
   9.63568600e-11   1.15671465e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.43403689e-09   7.21063556e-11   7.49565514e-12 ...,   2.86141011e-12
   1.19371568e-10   4.45508430e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  4.20429602e-09   5.21046353e-08   8.10345124e-09 ...,   5.86300342e-10
   3.32730554e-09   1.66969997e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  7.80486231e-10   5.84295279e-10   2.53962573e-10 ...,   3.75347420e-10
   1.93265348e-10   1.45991297e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.13916551e-10   1.07761140e-10   9.89249030e-11 ...,   1.68986547e-09
   7.50054963e-10   4.31301349e-11]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  9.42492973e-10   8.59196536e-09   1.02494672e-10 ...,   3.98985733e-08
   1.15627628e-07   6.76317891e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  4.17974677e-09   4.08643741e-09   3.63319874e-10 ...,   3.91569444e-09
   7.30739558e-08   2.11944950e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.33085493e-09   1.95456384e-09   4.90296128e-12 ...,   9.32741884e-10
   2.96909552e-10   3.32366483e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.06619842e-08   3.61571773e-09   9.39384473e-11 ...,   1.39774325e-08
   5.03242503e-10   1.27005237e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.67756653e-08   2.65218403e-10   2.42631887e-10 ...,   3.50006530e-08
   1.76166974e-08   4.35275425e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  3.70704143e-08   3.91929766e-10   2.27963551e-10 ...,   5.14717904e-08
   1.40914713e-09   5.59522952e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  9.74527903e-10   3.77452757e-11   2.11710293e-12 ...,   2.05474943e-10
   8.01455777e-12   4.18996976e-10]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.87985059e-08   2.13710592e-07   1.81182769e-09 ...,   1.33783995e-09
   4.26167324e-09   2.62216400e-08]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  1.30874887e-05   3.59461687e-08   1.35354128e-08 ...,   3.29450636e-08
   1.76860606e-08   4.74987064e-06]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.31295818e-08   9.35603950e-09   4.47534509e-10 ...,   7.24179050e-10
   1.20634711e-08   5.75142645e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  8.84155753e-08   6.67509070e-08   1.74789019e-08 ...,   1.96146086e-08
   2.91295873e-05   3.43731557e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  5.76502068e-10   1.65126829e-10   1.52040654e-11 ...,   1.82467218e-11
   2.48660492e-09   9.42964457e-11]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.07781250e-06   1.65200760e-08   2.34054582e-07 ...,   5.74711351e-07
   5.45326066e-06   1.50932934e-07]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  2.36017197e-08   5.37896727e-10   1.22056347e-08 ...,   9.74677894e-10
   5.27880886e-08   8.49536264e-09]
{0: 'pocket', 1: 'wear', 2: 'desire', 3: "foolin'", 4: 'dryer', 5: 'rude', 6: 'effervescence', 7: 'talked', 8: 'parrot', 9: 'crystal', 10: 'wishes', 11: 'contemporary', 12: 'evergreen', 13: 'stink', 14: 'glass', 15: 'exploiter', 16: 'glen:', 17: 'peppy', 18: 'bon-bons', 19: 'arrested:', 20: 'apartment', 21: 'sunny', 22: 'holds', 23: 'nudge', 24: 'pusillanimous', 25: 'hawking:', 26: 'buds', 27: 'friction', 28: 'reed', 29: "sayin'", 30: 'grandé', 31: 'goes', 32: 'pained', 33: 'dumptruck', 34: 'ignorant', 35: 'moe-near-now', 36: 'bob', 37: "round's", 38: 'patrons:', 39: 'terror', 40: 'serve', 41: 'cab', 42: 'coat', 43: 'tense', 44: 'ripping', 45: 'rich', 46: 'mediterranean', 47: 'shriners', 48: 'accelerating', 49: 'coincidentally', 50: 'better', 51: 'alibi', 52: 'banquo', 53: 'twentieth', 54: 'drinking', 55: 'alec_baldwin:', 56: 'intruding', 57: 'realizing', 58: 'al', 59: 'f-l-a-n-r-d-s', 60: 'fun', 61: 'prince', 62: 'placed', 63: 'tapping', 64: 'country-fried', 65: 'guff', 66: 'waltz', 67: 'maximum', 68: 'craphole', 69: 'clincher', 70: 'perplexed', 71: 'horrified', 72: 'raise', 73: 'grow', 74: 'yours', 75: 'grunt', 76: 'lookalike:', 77: 'raccoons', 78: 'out', 79: "nick's", 80: 'recipe', 81: 'heads', 82: '||return||', 83: 'whatchamacallit', 84: 'fixed', 85: "battin'", 86: "barney's", 87: 'doll', 88: 'octa-', 89: 'drinks', 90: 'forty', 91: 'artist', 92: 'defected', 93: 'darjeeling', 94: 'low-life', 95: 'hooray', 96: 'victim', 97: 'intelligent', 98: 'hurt', 99: 'bidet', 100: 'hate-hugs', 101: 'known', 102: 'entertainer', 103: 'wants', 104: "tap-pullin'", 105: 'hospital', 106: 'grain', 107: 'forehead', 108: "'now", 109: 'savagely', 110: 'pernt', 111: 'mariah', 112: 'load', 113: 'mount', 114: "doin'", 115: "b-52's:", 116: 'popped', 117: 'feel', 118: 'worldly', 119: 'gator:', 120: 'carey', 121: 'taking', 122: 'heavens', 123: 'eight-year-old', 124: "kearney's_dad:", 125: 'sobo', 126: 'hydrant', 127: 'high-definition', 128: "bar's", 129: 'ees', 130: 'brandy', 131: 'squeals', 132: 'focus', 133: "i'd'a", 134: 'groveling', 135: 'subscriptions', 136: "dyin'", 137: 'hate', 138: "hawkin'", 139: 'domed', 140: '70', 141: 'apron', 142: 'fountain', 143: 'occasional', 144: 'longer', 145: 'towed', 146: 'however', 147: 'kemi:', 148: 'danish', 149: "aren'tcha", 150: 'hold', 151: 'lifestyle', 152: 'academy', 153: "'bout", 154: 'gentle', 155: 'takeaway', 156: 'dee-fense', 157: 'maggie', 158: 'dumbest', 159: 'bills', 160: "ya'", 161: 'courthouse', 162: 'motor', 163: 'moe_recording:', 164: 'mike', 165: 'crowds', 166: 'barf', 167: 'diapers', 168: 'agh', 169: 'scrutinizes', 170: "wait'll", 171: 'ideal', 172: 'amount', 173: 'busy', 174: 'l', 175: 'defiantly', 176: 'drummer', 177: 'sees/', 178: 'dean', 179: 'sits', 180: 'bourbon', 181: 'tonight', 182: 'tony', 183: 'sudden', 184: 'rafters', 185: 'office', 186: 'elephants', 187: 'achem', 188: 'conspiratorial', 189: 'metal', 190: 'european', 191: 'grudgingly', 192: 'hobo', 193: 'was', 194: 'briefly', 195: "playin'", 196: 'murmur', 197: 'anguished', 198: 'whether', 199: 'slays', 200: 'before', 201: 'scrubbing', 202: 'points', 203: 'si-lent', 204: 'noosey', 205: 'watered-down', 206: 'slit', 207: 'young_marge:', 208: 'worst', 209: 'salvador', 210: 'harvard', 211: 'hardhat', 212: 'powers', 213: 'odor', 214: 'disaster', 215: 'neighborhood', 216: 'read:', 217: 'stingy', 218: 'backgammon', 219: 'vestigial', 220: 'babe', 221: 'gotten', 222: 'vermont', 223: 'heard', 224: 'renew', 225: 'neil_gaiman:', 226: 'longest', 227: 'gave', 228: 'sadder', 229: 'wraps', 230: 'ooo', 231: 'nitwit', 232: 'eighty-seven', 233: 'endorsement', 234: "liberty's", 235: 'knife', 236: 'closet', 237: 'rationalizing', 238: 'dishonor', 239: 'flatly', 240: 'eww', 241: 'johnny_carson:', 242: 'opportunity', 243: 'bloodiest', 244: 'naked', 245: 'cushion', 246: 'brain-switching', 247: 'fl', 248: 'dipping', 249: 'puke-pail', 250: 'annie', 251: 'infiltrate', 252: "calf's", 253: 'ventriloquism', 254: 'jack', 255: 'jigger', 256: '14', 257: "tv's", 258: 'piano', 259: 'cut', 260: 'so', 261: 'neon', 262: 'reviews', 263: 'zeal', 264: 'teen', 265: 'vengeful', 266: 'pig', 267: 'right', 268: 'traitors', 269: 'goods', 270: 'talking', 271: 'poster', 272: 'count', 273: 'slurps', 274: 'arts', 275: 'ears', 276: 'now', 277: 'milhouse_van_houten:', 278: 'shelf', 279: 'relationship', 280: 'snake_jailbird:', 281: 'fictional', 282: 'hm', 283: 'consider', 284: 'harm', 285: 'eighty-three', 286: 'ons', 287: 'iranian', 288: 'applicant', 289: 'snake-handler', 290: 'santeria', 291: 'priceless', 292: 'yells', 293: 'smooth', 294: 'rotch', 295: 'crying', 296: 'ab', 297: 'unexplained', 298: 'flash', 299: 'crawl', 300: 'bowie', 301: 'cup', 302: 'naval', 303: 'lovely', 304: 'doctor', 305: 'churchy', 306: 'fence', 307: 'airport', 308: 'sincerely', 309: 'place', 310: 'declare', 311: "challengin'", 312: 'baby', 313: 'carb', 314: 'end', 315: 'yards', 316: 'awkwardly', 317: 'refreshingness', 318: 'station', 319: 'mini-dumpsters', 320: 'saget', 321: 'hail', 322: "tester's", 323: 'pure', 324: 'praise', 325: 'penmanship', 326: 'trouble', 327: 'yell', 328: 'gonna', 329: 'gasps', 330: 'ate', 331: 'effigy', 332: 'twenty', 333: 'grammar', 334: 'pulled', 335: 'strains', 336: 'rip-off', 337: 'ape-like', 338: 'brassiest', 339: 'mean', 340: 'pilsner-pusher', 341: 'rebuttal', 342: 'nature', 343: 'tons', 344: 'kidney', 345: 'starving', 346: 'she', 347: 'assert', 348: 'difference', 349: 'jer', 350: 'mortgage', 351: 'worried', 352: 'verdict', 353: 'north', 354: "speakin'", 355: 'dammit', 356: 'thinking', 357: 'puff', 358: 'shower', 359: 'pyramid', 360: 'grunts', 361: 'square', 362: 'pigtown', 363: 'other_player:', 364: 'museum', 365: 'flowers', 366: 'mulder', 367: 'sang', 368: 'eat', 369: 'frog', 370: 'hosting', 371: "lady's", 372: 'stumble', 373: 'pleasure', 374: 'famous', 375: 'eleven', 376: 'splendid', 377: 'shot', 378: 'victorious', 379: 'fleabag', 380: 'brick', 381: 'sisters', 382: 'inherent', 383: 'pretentious_rat_lover:', 384: 'unavailable', 385: 'shut', 386: 'pause', 387: 'pair', 388: 'free', 389: "mopin'", 390: 'pointy', 391: '_zander:', 392: 'beating', 393: 'irrelevant', 394: 'hyper-credits', 395: "messin'", 396: 'scornful', 397: 'slender', 398: 'use', 399: 'scornfully', 400: 'followed', 401: 'clipped', 402: 'sternly', 403: 'femininity', 404: 'annoyed', 405: 'especially', 406: 'grocery', 407: 'farewell', 408: 'multi-purpose', 409: 'power', 410: 'ralph', 411: 'morose', 412: 'conclude', 413: 'chubby', 414: 'clubs', 415: 'weapon', 416: 'ze-ro', 417: 'thoughtfully', 418: 'bell', 419: 'choice', 420: 'depressing', 421: 'cuckoo', 422: 'passed', 423: 'miracle', 424: 'dumbass', 425: 'part', 426: 'tubman', 427: 'laughs', 428: 'boxer', 429: 'actually', 430: 'shaggy', 431: 'eager', 432: 'double', 433: 'maya:', 434: 'distance', 435: 'glove', 436: 'forgiven', 437: 'sea', 438: 'starts', 439: 'sugar-me-do', 440: 'hundreds', 441: 'machine', 442: 'company', 443: 'grand', 444: 'louder', 445: 'felony', 446: 'sees', 447: 'attention', 448: 'ah-ha', 449: 'necklace', 450: 'frankly', 451: 'hillary', 452: 'funds', 453: 'noises', 454: 'spend', 455: 'sideshow_mel:', 456: 'coal', 457: 'soothing', 458: 'vulgar', 459: 'conspiracy', 460: 'paparazzo', 461: 'expense', 462: 'million', 463: 'angrily', 464: 'binoculars', 465: 'disgrace', 466: 'bites', 467: 'ticks', 468: 'getting', 469: 'cauliflower', 470: 'arguing', 471: 'bought', 472: 'huge', 473: 'violations', 474: 'diminish', 475: 'homunculus', 476: 'strawberry', 477: "she'll", 478: 'gift', 479: 'ing', 480: 'teeth', 481: 'silent', 482: "neat's-foot", 483: 'weather', 484: 'nice', 485: 'mouse', 486: 'movies', 487: 'replaced', 488: 'sexy', 489: 'following', 490: "workin'", 491: 'grampa_simpson:', 492: 'quebec', 493: 'youngsters', 494: 'sass', 495: 'ago', 496: 'stick', 497: 'fever', 498: 'perón', 499: 'filth', 500: 'be', 501: 'hushed', 502: 'dang', 503: "we've", 504: 'beaumont', 505: 'voodoo', 506: 'pus-bucket', 507: 'spacey', 508: 'heh', 509: 'carl:', 510: "what'd", 511: 'golf', 512: 'monorails', 513: 'collapse', 514: 'gig', 515: "puttin'", 516: 'strong', 517: 'delts', 518: 'appreciate', 519: 'word', 520: 'beautiful', 521: 'catholic', 522: 'became', 523: 'veux', 524: 'libraries', 525: 'aggie', 526: 'reunion', 527: 'repay', 528: 'teriyaki', 529: 'name:', 530: 'tatum', 531: "o'clock", 532: 'telling', 533: 'born', 534: 'persia', 535: 'barter', 536: 'cheaped', 537: "listenin'", 538: 'upon', 539: 'prizefighters', 540: 'cranberry', 541: 'wha', 542: 'beyond', 543: 'lookalike', 544: 'wash', 545: 'miss_lois_pennycandy:', 546: 'charter', 547: 'asleep', 548: 'princesses', 549: 'tow-joes', 550: 'except', 551: 'dame', 552: 'enough', 553: 'noose', 554: 'asks', 555: 'plywood', 556: 'quickly', 557: 'seat', 558: 'larry:', 559: 'mitts', 560: "you'd", 561: 'startup', 562: 'cupid', 563: 'reserve', 564: 'answers', 565: 'fox_mulder:', 566: 'kissing', 567: 'thawing', 568: 'exchange', 569: 'training', 570: 'team', 571: 'jobless', 572: "carl's", 573: 'scarf', 574: 'girlfriend', 575: 'cards', 576: 'quitcher', 577: 'couple', 578: 'english', 579: 'bake', 580: 'salary', 581: 'winch', 582: 'remorseful', 583: 'howya', 584: 'hank_williams_jr', 585: 'lotta', 586: 'own', 587: "where's", 588: 'thoughtful', 589: 'life', 590: 'spending', 591: 'hub', 592: 'videotaped', 593: 'steamed', 594: 'ohh', 595: 'margarita', 596: 'wildfever', 597: 'calm', 598: 'deli', 599: 'laughter', 600: 'creepy', 601: 'recorded', 602: 'uncle', 603: 'nerve', 604: 'charge', 605: 'wallet', 606: 'health', 607: 'youth', 608: "wasn't", 609: 'thunder', 610: 'whatchacallit', 611: 'compels', 612: 'homie', 613: 'passports', 614: 'painless', 615: 'easter', 616: 'yourselves', 617: 'gumbel', 618: 'moved', 619: 'stickers', 620: 'blowfish', 621: 'partner', 622: 'sleeps', 623: 'dreamy', 624: 'sound', 625: 'melodramatic', 626: 'lose', 627: 'mailbox', 628: 'reciting', 629: 'sandwich', 630: 'fight', 631: 'launch', 632: 'safety', 633: 'william', 634: 'delivery_man:', 635: 'sexton', 636: 'dateline:', 637: 'contractors', 638: 'combine', 639: 'go-near-', 640: "man'd", 641: "tatum'll", 642: 'forty-two', 643: 'month', 644: 'beat', 645: 'term', 646: 'gals', 647: 'window', 648: 'temple', 649: 'purse', 650: 'bridge', 651: 'ahead', 652: "she'd", 653: 'trapping', 654: 'unsafe', 655: 'booking', 656: 'discriminate', 657: 'oh', 658: 'kirk_van_houten:', 659: "yieldin'", 660: 'repairman', 661: 'occupied', 662: 'results', 663: 'fausto', 664: 'walked', 665: 'gator', 666: 'rem', 667: 'generous', 668: 'dirge-like', 669: 'calls', 670: 'toasting', 671: 'nelson_muntz:', 672: 'cute', 673: 'outstanding', 674: 'citizens', 675: 'schabadoo', 676: 'weep', 677: 'expensive', 678: 'app', 679: 'fool', 680: "they'll", 681: 'hockey-fight', 682: 'bum:', 683: 'demo', 684: 'sistine', 685: 'seymour_skinner:', 686: 'looting', 687: 'mini-beret', 688: "buyin'", 689: 'fulla', 690: 'dizzy', 691: 'telephone', 692: "poisonin'", 693: 'blubberino', 694: 'maintenance', 695: 'formico', 696: 'laney', 697: 'amber_dempsey:', 698: "bartender's", 699: 'hardy', 700: 'flaming', 701: 'frankie', 702: 'habitrail', 703: 'chinese_restaurateur:', 704: 'soon', 705: 'handwriting', 706: 'showing', 707: 'roz:', 708: 'neck', 709: 'moments', 710: 'manatee', 711: 'stayed', 712: 'meal', 713: 'presto:', 714: 'sorts', 715: "y'see", 716: 'crappy', 717: 'pajamas', 718: 'during', 719: 'music', 720: 'yelling', 721: 'sweden', 722: 'richard:', 723: 'tune', 724: 'daughter', 725: 'recommend', 726: 'accident', 727: 'distract', 728: 'comedies', 729: 'unfresh', 730: "other's", 731: 'pantry', 732: 'wings', 733: 'achebe', 734: 'errrrrrr', 735: 'logos', 736: 'hairs', 737: 'mis-statement', 738: "today's", 739: 'every', 740: 'radishes', 741: 'ummmmmmmmm', 742: 'prompting', 743: 'sperm', 744: 'bull', 745: 'grace', 746: 'patrons', 747: 'musketeers', 748: "getting'", 749: 'clientele', 750: 'handsome', 751: 'satisfaction', 752: 'carlotta:', 753: 'slot', 754: 'nigel_bakerbutcher:', 755: 'faced', 756: 'ruined', 757: 'krusty_the_clown:', 758: 'gabriel', 759: 'sometimes', 760: 'one', 761: 'deliberate', 762: 'suave', 763: 'prettiest', 764: 'pictured', 765: 'urinal', 766: 'tragedy', 767: 'seas', 768: 'crank', 769: 'telemarketing', 770: 'eggs', 771: 'demand', 772: 'jeez', 773: '/mr', 774: 'diaper', 775: 'chum', 776: 'signal', 777: 'muttering', 778: 'tinkle', 779: 'beatings', 780: 'minister', 781: 'ocean', 782: 'listen', 783: 'program', 784: 'mayor_joe_quimby:', 785: 'jubilation', 786: 'aerosmith', 787: 'singers:', 788: 'cherry', 789: 'egg', 790: 'harrowing', 791: 'danny', 792: 'fireball', 793: 'tabs', 794: 'accounta', 795: 'banned', 796: 'fdic', 797: 'suru', 798: 'frenchman', 799: 'mamma', 800: 'wore', 801: 'hop', 802: 'people', 803: 'row', 804: 'straight', 805: 'predecessor', 806: 'full', 807: 'fifteen', 808: "comin'", 809: 'filled', 810: 'kicked', 811: 'spits', 812: 'tough', 813: "hangin'", 814: '1979', 815: 'extract', 816: 'picture', 817: 'south', 818: 'car:', 819: 'and', 820: 'disturbing', 821: 'built', 822: 'burns', 823: 'smokes', 824: 'shipment', 825: 'went', 826: 'ails', 827: 'mumbling', 828: 'based', 829: 'x', 830: 'jerk', 831: 'pretend', 832: 'hampstead-on-cecil-cecil', 833: 'hooch', 834: 'break-up', 835: 'language', 836: 'anniversary', 837: 'chub', 838: 'unintelligent', 839: 'horns', 840: 'few', 841: 'incarcerated', 842: 'strategy', 843: 'crowd:', 844: 'history', 845: 'mull', 846: 'shrieks', 847: 'tracks', 848: 'indecipherable', 849: 'schmoe', 850: 'cars', 851: "squeezin'", 852: 'want', 853: 'camera', 854: 'lucky', 855: 'slim', 856: 'thighs', 857: 'night-crawlers', 858: 'if', 859: 'automobiles', 860: 'ne', 861: 'cavern', 862: 'sticking', 863: "who's", 864: 'uh-oh', 865: 'folks', 866: 'scent', 867: 'whaddaya', 868: 'links', 869: 'force', 870: 'scully', 871: 'twin', 872: 'stand', 873: 'pond', 874: 'indicates', 875: 'give', 876: 'ken:', 877: 'strangles', 878: 'quarterback', 879: 'impatient', 880: 'drunkenly', 881: 'dials', 882: 'hmm', 883: 'sells', 884: 'draw', 885: 'haircuts', 886: 'self-centered', 887: 'typed', 888: '100', 889: 'dana_scully:', 890: 'woooooo', 891: 'haw', 892: 'energy', 893: 'rip', 894: "scammin'", 895: 'forever', 896: 'various', 897: 'roller', 898: 'alky', 899: 'crotch', 900: 'men', 901: 'limber', 902: 'eaters', 903: 'hey', 904: 'assume', 905: 'would', 906: 'polls', 907: 'skin', 908: 'sacajawea', 909: 'far', 910: 'magnanimous', 911: 'enjoy', 912: 'champion', 913: 'choke', 914: 'woozy', 915: 'correction', 916: 'reynolds', 917: 'closing', 918: 'vacations', 919: 'transfer', 920: 'tummies', 921: 'alcoholic', 922: 'warranty', 923: 'shares', 924: 'abercrombie', 925: 'researching', 926: 'pharmaceutical', 927: 'recall', 928: 'semi-imported', 929: 'hourly', 930: 'delivery', 931: 'desperately', 932: 'living', 933: 'material', 934: 'oh-ho', 935: 'kyoto', 936: 'guttural', 937: 'matter', 938: 'ask', 939: 'parasol', 940: 'tabooger', 941: 'awed', 942: 'seats', 943: 'forbidden', 944: 'fire_inspector:', 945: 'twenty-five', 946: "fine-lookin'", 947: 'thrown', 948: 'infatuation', 949: 'locked', 950: 'met', 951: 'broken', 952: 'avalanche', 953: 'principles', 954: 'enjoyed', 955: 'flying', 956: 'really', 957: 'buried', 958: 'david', 959: 'tale', 960: 'hero-phobia', 961: 'locklear', 962: 'jebediah', 963: 'trash', 964: 'mater', 965: 'application', 966: 'darts', 967: 'navy', 968: 'nasty', 969: 'nasa', 970: 'phlegm', 971: 'gruesome', 972: 'whoever', 973: 'strain', 974: 'none', 975: 'sleep', 976: 'when-i-get-a-hold-of-you', 977: 'hottest', 978: 'buying', 979: 'gotcha', 980: 'belt', 981: 'sink', 982: 'hilarious', 983: 'scientific', 984: 'storms', 985: 'sitting', 986: 'frustrated', 987: 'loss', 988: 'but', 989: 'justify', 990: 'sickly', 991: 'volunteer', 992: 'other', 993: "plaster's", 994: 'self-esteem', 995: 'valley', 996: 'dreamily', 997: 'supplying', 998: 'sixty', 999: 'impending', 1000: 'intoxicants', 1001: 'lime', 1002: 'crayon', 1003: 'spelling', 1004: 'manfred', 1005: 'wowww', 1006: 'finale', 1007: 'onto', 1008: 'shoo', 1009: 'rivalry', 1010: "that'd", 1011: 'grieving', 1012: 'annual', 1013: 'polishing', 1014: 'aid', 1015: 'moe-clone:', 1016: 'slapped', 1017: "couldn't", 1018: 'fringe', 1019: 'dr', 1020: 'hmmm', 1021: 'stranger:', 1022: 'song', 1023: 'acceptance', 1024: 'depending', 1025: 'dennis', 1026: 'represent', 1027: 'drains', 1028: 'question', 1029: 'killer', 1030: 'annus', 1031: 'reading', 1032: 'gifts', 1033: 'men:', 1034: 'squeal', 1035: 'hispanic_crowd:', 1036: 'amnesia', 1037: 'hose', 1038: 'please/', 1039: 'raking', 1040: 'yew', 1041: 'rubbed', 1042: 'both', 1043: 'beauty', 1044: 'marshmallow', 1045: 'afterglow', 1046: 'mister', 1047: 'clearing', 1048: 'remember', 1049: 'thesaurus', 1050: 'actress', 1051: 'granted', 1052: 'wenceslas', 1053: 'nickel', 1054: 'small', 1055: 'than', 1056: 'specified', 1057: 'atlanta', 1058: 'secrets', 1059: 'mock-up', 1060: 'skunk', 1061: 'strictly', 1062: 'christopher', 1063: 'presently', 1064: 'western', 1065: "'morning", 1066: 'relieved', 1067: 'louisiana', 1068: 'pulling', 1069: 'way', 1070: 'plums', 1071: 'outta', 1072: 'securities', 1073: 'ding-a-ding-ding-ding-ding-ding-ding', 1074: 'woo', 1075: 'deny', 1076: "singin'", 1077: 'prolonged', 1078: 'w-a-3-q-i-zed', 1079: 'beep', 1080: 'ingredient', 1081: 'cameras', 1082: 'likes', 1083: 'feeling', 1084: 'america', 1085: 'ooh', 1086: 'part-time', 1087: 'girl-bart', 1088: 'red', 1089: 'sincere', 1090: 'press', 1091: 'uhhhh', 1092: "somebody's", 1093: 'commanding', 1094: 'cowardly', 1095: 'extinguishers', 1096: 'costume', 1097: 'reason', 1098: 'kickoff', 1099: 'ninety-nine', 1100: '_marvin_monroe:', 1101: 'doooown', 1102: 'sangre', 1103: "bettin'", 1104: 'burn', 1105: 'sweat', 1106: 'vengeance', 1107: 'kemi', 1108: 'ned_flanders:', 1109: 'abolish', 1110: 'fund', 1111: 'venture', 1112: 'mountain', 1113: '_kissingher:', 1114: 'screams', 1115: 'upbeat', 1116: 'bulldozing', 1117: 'unlocked', 1118: 'crazy', 1119: 'losers', 1120: 'spot', 1121: 'tongue', 1122: 'eyes', 1123: 'catty', 1124: 'uses', 1125: "o'", 1126: 'whistles', 1127: 'cattle', 1128: 'sumatran', 1129: 'cyrano', 1130: 'dessert', 1131: 'profiling', 1132: 'cannoli', 1133: 'crunch', 1134: 'la', 1135: 'beloved', 1136: 'murmurs', 1137: 'talk', 1138: 'piling', 1139: 'pin', 1140: 'reasons', 1141: 'meditative', 1142: 'theory', 1143: 'susie-q', 1144: 'realize', 1145: 'simp-sonnnn', 1146: 'fail', 1147: 'dies', 1148: 'thousand-year', 1149: 'ordered', 1150: 'are', 1151: 'gambler', 1152: 'burning', 1153: 'los', 1154: "toot's", 1155: 'cheerier', 1156: 'deadly', 1157: 'lear', 1158: 'why', 1159: 'male_singers:', 1160: 'crowned', 1161: 'news', 1162: 'assent', 1163: 'marguerite:', 1164: 'stamp', 1165: "pope's", 1166: 'exhale', 1167: 'hated', 1168: 'steal', 1169: 'even', 1170: 'kind', 1171: 'justice', 1172: 'shoes', 1173: 'beeps', 1174: 'evil', 1175: 'happened', 1176: 'hoping', 1177: 'testing', 1178: 'carney', 1179: 'wheels', 1180: 'quimbys:', 1181: 'genuinely', 1182: 'tall', 1183: 'moolah-stealing', 1184: "phone's", 1185: 'upsetting', 1186: 'donut-shaped', 1187: 'duffed', 1188: 'boxer:', 1189: 'rife', 1190: 'show', 1191: 'puzzle', 1192: 'panicky', 1193: 'swallowed', 1194: 'urban', 1195: 'manuel', 1196: 'while', 1197: "bart's", 1198: 'ones', 1199: 'rockers', 1200: "gentleman's", 1201: 'challenge', 1202: 'brawled', 1203: 'turns', 1204: 'embarrassed', 1205: 'mission', 1206: 'too', 1207: 'allow', 1208: 'mabel', 1209: 'rings', 1210: 'heartily', 1211: 'overflowing', 1212: 'lifetime', 1213: 'counter', 1214: 'adult', 1215: 'agency', 1216: 'religious', 1217: 'continuing', 1218: 'compete', 1219: 'gin-slingers', 1220: 'sense', 1221: 'flashbacks', 1222: 'poetics', 1223: 'rome', 1224: 'th-th-th-the', 1225: 'tactful', 1226: 'weak', 1227: 'bushes', 1228: 'chinua', 1229: 'nineteen', 1230: 'convinced', 1231: 'hide', 1232: 'refresh', 1233: 'smelling', 1234: 'slaps', 1235: 'hiding', 1236: 'each', 1237: 'ashamed', 1238: 'selma_bouvier:', 1239: 'jokes', 1240: 'looks', 1241: 'hexa-', 1242: 'poet', 1243: 'skoal', 1244: 'chic', 1245: 'slip', 1246: "brady's", 1247: 'hell', 1248: 'homer_doubles:', 1249: 'rocks', 1250: 'pal', 1251: 'voted', 1252: 'sack', 1253: 'magic', 1254: 'crooks', 1255: 'romantic', 1256: 'forget-me-shot', 1257: 'gluten', 1258: 'new', 1259: 'sealed', 1260: 'arms', 1261: 'operation', 1262: 'cocktail', 1263: "'n'", 1264: 'rainier_wolfcastle:', 1265: "tootin'", 1266: 'dutch', 1267: 'donut', 1268: 'fellow', 1269: 'coffee', 1270: 'drug', 1271: 'confused', 1272: 'bubble', 1273: 'skinheads', 1274: 'tremendous', 1275: 'cerebral', 1276: 'air', 1277: "s'cuse", 1278: 'yelp', 1279: 'coined', 1280: 'told', 1281: 'the', 1282: 'whiny', 1283: 'tom', 1284: 'generally', 1285: 'weekend', 1286: 'as', 1287: 'wally', 1288: 'devils:', 1289: 'gut', 1290: 'excitement', 1291: 'age', 1292: 'clean', 1293: 'stretch', 1294: "doesn't", 1295: 'understanding', 1296: 'do', 1297: 'fontaine', 1298: 'grains', 1299: 'cooking', 1300: 'cheered', 1301: 'diving', 1302: 'africanized', 1303: 'happen', 1304: 'roz', 1305: 'teacher', 1306: 'michael', 1307: 'orders', 1308: 'bathed', 1309: 'hero', 1310: 'audience', 1311: 'successful', 1312: 'edison', 1313: 'faded', 1314: 'digging', 1315: 'well', 1316: 'grants', 1317: 'mole', 1318: 'gear-head', 1319: 'ore', 1320: 'regulars', 1321: 'infestation', 1322: 'leprechaun', 1323: 'viva', 1324: 'fans', 1325: "cheerin'", 1326: 'he', 1327: 'high', 1328: "it'd", 1329: 'fabulous', 1330: 'afford', 1331: 'territorial', 1332: 'her', 1333: 'keep', 1334: 'bathtub', 1335: 'watered', 1336: 'rupert_murdoch:', 1337: 'hustle', 1338: 'edna', 1339: 'prove', 1340: 'junior', 1341: 'declared', 1342: 'othello', 1343: 'it', 1344: 'boozer', 1345: 'left', 1346: 'poulet', 1347: 'meaning', 1348: 'perfect', 1349: 'ayyy', 1350: 'legally', 1351: 'answered', 1352: 'bachelorette', 1353: 'hope', 1354: 'korea', 1355: 'religion', 1356: 'theater', 1357: "cat's", 1358: 'eighty-one', 1359: 'resenting', 1360: 'muertos', 1361: 'ghouls', 1362: 'uh', 1363: 'space-time', 1364: 'sign', 1365: 'luxury', 1366: 'meant', 1367: 'gary_chalmers:', 1368: 'ugliest', 1369: "talkin'", 1370: 'five-fifteen', 1371: 'thing', 1372: 'yup', 1373: 'mansions', 1374: 'rugged', 1375: 'tapered', 1376: "cashin'", 1377: 'balls', 1378: 'fast', 1379: 'stirring', 1380: 'betrayed', 1381: "kiddin'", 1382: '||quotation_mark||', 1383: 'knocked', 1384: 'homeland', 1385: 'index', 1386: 'stays', 1387: 'creme', 1388: 'leno', 1389: 'novel', 1390: 'prank', 1391: 'practice', 1392: 'married', 1393: 'lips', 1394: 'lessee', 1395: 'a-lug', 1396: 'send', 1397: 'delighted', 1398: 'marge_simpson:', 1399: 'mugs', 1400: 'nail', 1401: 'technical', 1402: "startin'", 1403: 'anger', 1404: 'chained', 1405: 'fast-food', 1406: "homer's_brain:", 1407: 'unfair', 1408: 'panicked', 1409: 'oof', 1410: 'listens', 1411: 'temporarily', 1412: 'railroad', 1413: "must've", 1414: 'rig', 1415: 'isotopes', 1416: 'forget', 1417: 'fights', 1418: 'donor', 1419: 'whaaa', 1420: 'plug', 1421: 'never', 1422: "s'pose", 1423: 'hooters', 1424: 'jazz', 1425: 'concentrate', 1426: 'jamaican', 1427: 'frogs', 1428: 'blows', 1429: 'cushions', 1430: "lovers'", 1431: 'grumpy', 1432: 'teenage_bart:', 1433: 'shill', 1434: 'hoax', 1435: 'squirrel', 1436: 'learned', 1437: 'any', 1438: 'yellow', 1439: 'honey', 1440: 'literary', 1441: 'scram', 1442: 'wish', 1443: 'mug', 1444: 'sequel', 1445: 'influence', 1446: 'sweetheart', 1447: 'killjoy', 1448: 'birth', 1449: 'enter', 1450: 'ditched', 1451: 'tommy', 1452: 'bender:', 1453: "liftin'", 1454: 'sick', 1455: 'pregnancy', 1456: 'hateful', 1457: 'sharing', 1458: 'nearly', 1459: 'society', 1460: 'norway', 1461: 'typing', 1462: 'hates', 1463: 'appropriate', 1464: 'suburban', 1465: 'bread', 1466: 'ball', 1467: 'maxed', 1468: 'wrestle', 1469: '6', 1470: 'drinking:', 1471: 'lame', 1472: 'koi', 1473: 'an', 1474: 'boggs', 1475: 'purveyor', 1476: 'tab', 1477: 'freshened', 1478: 'sagely', 1479: 'troubles', 1480: 'hike', 1481: 'mayor', 1482: 'twenty-six', 1483: 'fondly', 1484: 'rhyme', 1485: 'graveyard', 1486: 'admiration', 1487: 'a-a-b-b-a', 1488: 'begins', 1489: 'mop', 1490: 'happens', 1491: 'appalled', 1492: 'butterball', 1493: 'madonna', 1494: 'pursue', 1495: "they'd", 1496: 'heavyset', 1497: 'very', 1498: 'young', 1499: 'holding', 1500: 'insurance', 1501: 'nobody', 1502: 'blank', 1503: 'woman', 1504: 'taylor', 1505: 'closed', 1506: 'queen', 1507: 'lemme', 1508: "someone's", 1509: 'buzz', 1510: 'billboard', 1511: 'nfl_narrator:', 1512: 'gutenberg', 1513: 'sentimonies', 1514: 'jams', 1515: 'sitcom', 1516: 'unrelated', 1517: 'warmth', 1518: 'dog', 1519: 'subject', 1520: 'dispenser', 1521: 'tick', 1522: 'fatty', 1523: 'lighting', 1524: 'firm', 1525: "g'on", 1526: 'micronesian', 1527: 'quotes', 1528: 'won', 1529: 'british', 1530: 'shuts', 1531: 'market', 1532: 'alternative', 1533: 'almond', 1534: 'bubbles-in-my-nose-y', 1535: 'earth', 1536: 'restless', 1537: 'and:', 1538: 'world-class', 1539: 'floor', 1540: 'admirer', 1541: 'chug-monkeys', 1542: 'lungs', 1543: 'anti-lock', 1544: 'confidence', 1545: 'look', 1546: 'chair', 1547: 'throats', 1548: 'severe', 1549: 'director', 1550: 'bobo', 1551: 'wolveriskey', 1552: 'return', 1553: 'sold', 1554: 'screw', 1555: 'superhero', 1556: 'body', 1557: 'average-looking', 1558: 'grave', 1559: 'nooo', 1560: 'saw', 1561: 'droning', 1562: 'all-all-all', 1563: 'madison', 1564: 'shark', 1565: 'couch', 1566: 'tentative', 1567: 'means', 1568: 'unkempt', 1569: 'roach', 1570: 'stagy', 1571: 'cueball', 1572: 'gardens', 1573: 'perch', 1574: 'says', 1575: 'finishing', 1576: 'sail', 1577: 'swishkabobs', 1578: 'singing/pushing', 1579: 'scene', 1580: 'private', 1581: 'lobster-based', 1582: 'snail', 1583: 'emphasis', 1584: "ragin'", 1585: 'aah', 1586: 'made', 1587: 'blood-thirsty', 1588: 'trusted', 1589: 'shakespeare', 1590: 'help', 1591: 'kang:', 1592: 'zack', 1593: 'take', 1594: 'heals', 1595: 'pint', 1596: 'cotton', 1597: 'touchdown', 1598: 'sacrifice', 1599: 'zoomed', 1600: 'effervescent', 1601: 'slow', 1602: 'atari', 1603: 'impress', 1604: 'whose', 1605: 'himself', 1606: 'reopen', 1607: '21', 1608: 'overhearing', 1609: 'computer_voice_2:', 1610: 'yellow-belly', 1611: 'foot', 1612: 'cocks', 1613: 'perfunctory', 1614: 'stained-glass', 1615: "neighbor's", 1616: 'i', 1617: 'friend:', 1618: 'bart', 1619: 'immiggants', 1620: 'screws', 1621: 'honored', 1622: 'wrong', 1623: 'handshake', 1624: 'hearse', 1625: 'arab_man:', 1626: 'non-american', 1627: 'sensible', 1628: 'quality', 1629: 'over', 1630: 'prejudice', 1631: 'blind', 1632: 'speech', 1633: 'good', 1634: 'baloney', 1635: 'lenny_leonard:', 1636: 'teams', 1637: 'presses', 1638: 'swe-ee-ee-ee-eet', 1639: 'ignorance', 1640: 'speak', 1641: 'weekly', 1642: "who'da", 1643: 'knowing', 1644: 'chipper', 1645: 'night', 1646: 'tuna', 1647: 'thumb', 1648: 'emporium', 1649: 'normal', 1650: 'fish', 1651: 'hidden', 1652: 'clinton', 1653: 'ivana', 1654: 'all-star', 1655: 'proposition', 1656: 'products', 1657: 'urine', 1658: 'plotz', 1659: 'rickles', 1660: 'tofu', 1661: 'barkeep', 1662: 'rounds', 1663: 'troy_mcclure:', 1664: 'jacks', 1665: 'west', 1666: 'something:', 1667: 'survive', 1668: 'brow', 1669: 'declan_desmond:', 1670: 'joey_kramer:', 1671: 'er', 1672: 'groin', 1673: 'y', 1674: 'flame', 1675: 'minors', 1676: 'morning', 1677: 'sizes', 1678: 'boneheaded', 1679: 'military', 1680: 'suspect', 1681: 'wing', 1682: 'books', 1683: 'letters', 1684: 'accurate', 1685: "america's", 1686: 'womb', 1687: 'ehhhhhhhhh', 1688: 'across', 1689: 'eye-gouger', 1690: 'eighty-six', 1691: 'touches', 1692: 'sneeze', 1693: 'clothespins:', 1694: 'milks', 1695: 'bathroom', 1696: 'carny:', 1697: 'familiar', 1698: 'season', 1699: 'sticker', 1700: 'lainie:', 1701: 'standing', 1702: 'premiering', 1703: 'bowling', 1704: 'villanova', 1705: 'unsanitary', 1706: 'radical', 1707: 'bitter', 1708: 'turning', 1709: 'mel', 1710: 'bright', 1711: 'against', 1712: 'restaurants', 1713: 'wiping', 1714: 'absolutely', 1715: 'outlive', 1716: 'whup', 1717: "queen's", 1718: 'wrote', 1719: 'neighboreeno', 1720: 'career', 1721: 'seemed', 1722: "man's", 1723: 'characteristic', 1724: 'thinks', 1725: 'cab_driver:', 1726: 'utility', 1727: 'tying', 1728: 'cleaning', 1729: 'seamstress', 1730: 'french', 1731: 'toy', 1732: 'wienerschnitzel', 1733: 'advantage', 1734: 'stagey', 1735: 'joke', 1736: 'love-matic', 1737: 'apu_nahasapeemapetilon:', 1738: 'asked', 1739: 'wobbly', 1740: "drexel's", 1741: 'panties', 1742: 'test-lady', 1743: 'h', 1744: 'fighting', 1745: 'winston', 1746: 'excavating', 1747: 'god', 1748: 'retired', 1749: 'unlike', 1750: 'road', 1751: "stinkin'", 1752: 'step', 1753: 'period', 1754: 'flea:', 1755: 'bonfire', 1756: 'sent', 1757: 'examines', 1758: 'thirty-five', 1759: 'oww', 1760: 'old', 1761: "ma'am", 1762: 'page', 1763: "mcstagger's", 1764: 'moonnnnnnnn', 1765: 'repressed', 1766: 'barkeeps', 1767: '_powers:', 1768: 'mm', 1769: 'violin', 1770: 'same', 1771: 'county', 1772: 'kahlua', 1773: 'mostly', 1774: 'sales', 1775: 'texan', 1776: 'wiener', 1777: 'reporter', 1778: 'mobile', 1779: 'agents', 1780: 'sniffing', 1781: 'sit', 1782: 'liable', 1783: 'cares', 1784: "c'mere", 1785: 'pasta', 1786: 'starlets', 1787: 'choices:', 1788: 'heh-heh', 1789: 'above', 1790: 'done:', 1791: 'sunglasses', 1792: 'dismissive', 1793: 'thirty', 1794: 'good-looking', 1795: 'mindless', 1796: 'perverse', 1797: 'missing', 1798: 'expecting', 1799: 'theatah', 1800: 'assassination', 1801: 'court', 1802: 'lead', 1803: 'divorced', 1804: 'swan', 1805: 'rabbits', 1806: 'sidelines', 1807: 'long', 1808: 'television', 1809: 'huggenkiss', 1810: 'whoo', 1811: 'ehhhhhhhh', 1812: 'african', 1813: 'circus', 1814: 'springfield', 1815: 'absorbent', 1816: "brockman's", 1817: 'fighter', 1818: 'gregor', 1819: 'getaway', 1820: 'fit', 1821: '_timothy_lovejoy:', 1822: 'dishrag', 1823: 'trolls', 1824: 'aerospace', 1825: 'cell-ee', 1826: 'motel', 1827: 'times', 1828: 'ho', 1829: 'contented', 1830: 'ehhh', 1831: 'door', 1832: 'pen', 1833: 'wikipedia', 1834: 'flaking', 1835: 'bucket', 1836: 'star', 1837: 'debonair', 1838: 'i-i', 1839: 'twice', 1840: 'guiltily', 1841: "i-i'm", 1842: 'food', 1843: 'businessman_#1:', 1844: 'woodchucks', 1845: 'conference', 1846: 'village', 1847: 'favor', 1848: 'pissed', 1849: 'spit-backs', 1850: 'janette', 1851: 'noooooooooo', 1852: 'youuu', 1853: 'probably', 1854: 'uh-huh', 1855: 'publish', 1856: 'don', 1857: 'guest', 1858: 'adopted', 1859: 'seeing', 1860: 'head', 1861: 'lis', 1862: 'disdainful', 1863: 'frink-y', 1864: 'fainted', 1865: 'sweetie', 1866: 'prep', 1867: 'roomy', 1868: 'vulnerable', 1869: 'throwing', 1870: 'although', 1871: "life's", 1872: 'engraved', 1873: 'strongly', 1874: 'moe-heads', 1875: 'picked', 1876: 'did', 1877: 'sodas', 1878: 'tie', 1879: 'edna-lover-one-seventy-two', 1880: 'dynamite', 1881: 're-al', 1882: 'inspiring', 1883: 'lush', 1884: '||dash||', 1885: 'keys', 1886: 'bow', 1887: 'lee', 1888: 'cliff', 1889: 'eve', 1890: 'without', 1891: 'hearing', 1892: 'moustache', 1893: 'loaded', 1894: 'focused', 1895: 'popular', 1896: 'stones', 1897: "drinkin'", 1898: 'when', 1899: 'barbara', 1900: 'grammy', 1901: 'hat', 1902: 'cigarette', 1903: 'risqué', 1904: 'sued', 1905: 'advice', 1906: 'involved', 1907: 'instantly', 1908: 'away', 1909: 'assumed', 1910: 'michelin', 1911: 'coupon', 1912: 'choking', 1913: 'waking-up', 1914: 'prettied', 1915: 'statues', 1916: 'expression', 1917: 'jaegermeister', 1918: 'heatherton', 1919: 'husband', 1920: 'herself', 1921: 'producers', 1922: 'understood', 1923: 'restroom', 1924: "elmo's", 1925: 'sinkhole', 1926: 'rubs', 1927: 'lottery', 1928: "wouldn't-a", 1929: 'morlocks', 1930: 'stevie', 1931: 'kissed', 1932: 'relative', 1933: 'bathing', 1934: 'sauce', 1935: 'candles', 1936: 'heaving', 1937: 'blade', 1938: 'castle', 1939: 'chipped', 1940: 'behind', 1941: 'sledge-hammer', 1942: 'mary', 1943: 'inspire', 1944: 'yuh-huh', 1945: 'care', 1946: "wouldn't", 1947: 'then:', 1948: 'charged', 1949: 'steampunk', 1950: 'recorder', 1951: 'fires', 1952: "beer's", 1953: 'cent', 1954: 'homeless', 1955: 'will', 1956: 'aer', 1957: 'muhammad', 1958: 'booze', 1959: 'rainforest', 1960: 'lately', 1961: 'wazoo', 1962: 'giving', 1963: 'presidential', 1964: 'bunion', 1965: "crawlin'", 1966: 'poker', 1967: 'repeating', 1968: 'sustain', 1969: 'memories', 1970: "friend's", 1971: "feelin's", 1972: 'bartending', 1973: 'phone', 1974: 'sneaky', 1975: 'hotel', 1976: 'len-ny', 1977: 'scare', 1978: 'ecru', 1979: "stabbin'", 1980: 'with', 1981: 'arse', 1982: 'sneak', 1983: "school's", 1984: 'pats', 1985: 'being', 1986: 'blamed', 1987: 'smuggled', 1988: 'moans', 1989: 'blinded', 1990: 'partners', 1991: 'person', 1992: 'days', 1993: "seein'", 1994: 'waitress', 1995: 'backwards', 1996: 'replace', 1997: 'a', 1998: 'tourist', 1999: 'midge:', 2000: 'strolled', 2001: 'coyly', 2002: 'texas', 2003: 'punching', 2004: 'pronto', 2005: 'potato', 2006: 'paramedic:', 2007: 'hmmmm', 2008: 'passes', 2009: 'greatest', 2010: 'reasonable', 2011: 'wonder', 2012: 'stalwart', 2013: 'junebug', 2014: 'problemo', 2015: 'increasingly', 2016: 'chunk', 2017: 'applesauce', 2018: 'estranged', 2019: 'tyson/secretariat', 2020: "fishin'", 2021: 'access', 2022: 'sketching', 2023: 'nonchalantly', 2024: 'madman', 2025: 'paints', 2026: 'peter_buck:', 2027: 'hawaii', 2028: 'wasted', 2029: 'sabermetrics', 2030: 'bret', 2031: 'waist', 2032: "grandmother's", 2033: 'ali', 2034: 'ingrates', 2035: 'disappointing', 2036: 'raises', 2037: 'brightening', 2038: 'knock', 2039: 'gruff', 2040: 'ready', 2041: 'century', 2042: 'covering', 2043: 'disguise', 2044: 'rub', 2045: 'choices', 2046: 'half-back', 2047: 'here-here-here', 2048: 'pile', 2049: 'rolling', 2050: 'pleased', 2051: 'presumir', 2052: 'pro', 2053: 'dashes', 2054: 'soaked', 2055: 'cat', 2056: 'hair', 2057: 'restaurant', 2058: 'pinball', 2059: 'patron_#1:', 2060: 'childless', 2061: 'cooker', 2062: 'serious', 2063: 'nibble', 2064: 'plans', 2065: 'memory', 2066: "they're", 2067: 'local', 2068: 'lewis', 2069: 'schizophrenia', 2070: 'van', 2071: 'beats', 2072: 'payday', 2073: 'massage', 2074: 's', 2075: 'befouled', 2076: 'monster', 2077: 'publishers', 2078: "tv'll", 2079: 'caveman', 2080: 'kidnaps', 2081: 'holy', 2082: 'peeved', 2083: 'sat-is-fac-tion', 2084: 'bets', 2085: 'enterprising', 2086: 'countryman', 2087: 'continuum', 2088: 'lighter', 2089: 'derek', 2090: 'starve', 2091: 'arm', 2092: 'apart', 2093: 'stalin', 2094: 'flayvin', 2095: 'composer', 2096: 'sharity', 2097: 'suds', 2098: 'understand', 2099: 'dallas', 2100: 'steam', 2101: 'bottles', 2102: 'chip', 2103: 'accusing', 2104: 'church', 2105: 'radiator', 2106: 'improv', 2107: 'ahem', 2108: 'taught', 2109: 'shoe', 2110: 'pitcher', 2111: 'complete', 2112: 'beach', 2113: 'occurrence', 2114: 'giggle', 2115: 'artie', 2116: 'mickey', 2117: 'novelty', 2118: 'fat_in_the_hat:', 2119: 'sickened', 2120: 'harv', 2121: 'what', 2122: 'kitchen', 2123: "mecca's", 2124: 'doom', 2125: 'sucks', 2126: 'fast-paced', 2127: 'size', 2128: 'rope', 2129: 'coney', 2130: 'wholeheartedly', 2131: 'blobbo', 2132: 'rage', 2133: 'spare', 2134: 'easily', 2135: 'who-o-oa', 2136: 'marquee', 2137: 'walks', 2138: 'rusty', 2139: 'nothing', 2140: 'jack_larson:', 2141: 'unusual', 2142: 'watt', 2143: 'exact', 2144: "pickin'", 2145: 'stinger', 2146: 'detail', 2147: 'encore', 2148: 'harv:', 2149: 'escort', 2150: 'kodos:', 2151: 'clothes', 2152: "money's", 2153: 'mckinley', 2154: 'drawer', 2155: 'entire', 2156: 'sausage', 2157: 'grrrreetings', 2158: 'payback', 2159: 'nantucket', 2160: 'seething', 2161: 'argue', 2162: 'frozen', 2163: 'germany', 2164: 'this', 2165: 'nascar', 2166: 'game', 2167: 'pride', 2168: 'handling', 2169: 'byrne', 2170: 'unbelievably', 2171: 'options', 2172: 'five', 2173: 'go', 2174: 'raging', 2175: 'weary', 2176: 'error', 2177: 'vigilante', 2178: 'shopping', 2179: 'creeps', 2180: 'kazoo', 2181: 'okay', 2182: 'privacy', 2183: 'gosh', 2184: "fans'll", 2185: 'bottom', 2186: 'sips', 2187: 'brine', 2188: 'clenched', 2189: 'breakfast', 2190: 'j', 2191: 'lay', 2192: 'rev', 2193: 'awww', 2194: 'ninth', 2195: 'gheet', 2196: 'jerking', 2197: 'choice:', 2198: 'massive', 2199: 'officer', 2200: 'sensitivity', 2201: 'calculate', 2202: 'grienke', 2203: 'woman:', 2204: 'playful', 2205: 'yak', 2206: 'suing', 2207: 'text', 2208: 'adeleine', 2209: 'muscles', 2210: "wearin'", 2211: 'chuckle', 2212: 'snotball', 2213: "tramp's", 2214: 'customers-slash-only', 2215: 'love', 2216: 'deep', 2217: 'noticing', 2218: 'mags', 2219: 'mmmm', 2220: 'agreement', 2221: "ridin'", 2222: 'newly-published', 2223: 'eyeballs', 2224: 'jump', 2225: 'week', 2226: "wino's", 2227: 'syndicate', 2228: 'underwear', 2229: 'toss', 2230: 'dilemma', 2231: 'invented', 2232: 'shortcomings', 2233: 'yet', 2234: 'about', 2235: 'absentmindedly', 2236: 'judgments', 2237: 'guard', 2238: 'shores', 2239: 'lover', 2240: 'behavior', 2241: 'dearest', 2242: 'random', 2243: 'flush-town', 2244: 'retain', 2245: 'gentleman:', 2246: 'portuguese', 2247: 'were', 2248: "show's", 2249: 'photos', 2250: 'chill', 2251: 'plane', 2252: 'sighs', 2253: '_eugene_blatz:', 2254: 'ourselves', 2255: 'cleaner', 2256: 'together', 2257: 'caused', 2258: 'fbi_agent:', 2259: 'betcha', 2260: "drawin'", 2261: 'kinderhook', 2262: 'incredible', 2263: 'winning', 2264: 'relaxing', 2265: 'middle', 2266: 'dreamed', 2267: 'blow', 2268: 'lied', 2269: 'fatso', 2270: 'stewart', 2271: 'gary:', 2272: 'visas', 2273: 'je', 2274: 'casting', 2275: 'bedridden', 2276: 'pee', 2277: 'ruin', 2278: 'committee', 2279: 'glad', 2280: 'ripper', 2281: 'peppers', 2282: 'wang', 2283: 'souped', 2284: 'incredulous', 2285: 'internet', 2286: 'push', 2287: 'ironed', 2288: 'lost', 2289: "fryer's", 2290: "bladder's", 2291: 'tiny', 2292: 'punches', 2293: 'eaten', 2294: "g'ahead", 2295: 'shelbyville', 2296: 'opening', 2297: 'me', 2298: 'holiday', 2299: 'moesy', 2300: 'eight', 2301: "'your", 2302: 'drop', 2303: 'lincoln', 2304: 'ho-ly', 2305: 'benjamin:', 2306: 'watching', 2307: 'freaking', 2308: 'radiation', 2309: 'junkyard', 2310: 'looked', 2311: 'itchy', 2312: 'license', 2313: 'aboard', 2314: "world's", 2315: 'hunka', 2316: 'billingsley', 2317: 'kim_basinger:', 2318: 'stiffening', 2319: 'harmony', 2320: 'rash', 2321: 'fan', 2322: 'appear', 2323: 'banks', 2324: 'mob', 2325: 'cummerbund', 2326: 'solo', 2327: 'moe-lennium', 2328: 'beady', 2329: 'perking', 2330: 'urge', 2331: 'glum', 2332: 'regret', 2333: 'hunger', 2334: 'ratio', 2335: 'pink', 2336: 'winces', 2337: 'democrats', 2338: 'admiring', 2339: 'düffenbraus', 2340: 'fragile', 2341: 'enabling', 2342: 'quarter', 2343: 'works', 2344: 'homesick', 2345: "soakin's", 2346: 'credit', 2347: 'gloop', 2348: 'shyly', 2349: 'crapmore', 2350: 'dyspeptic', 2351: "y'know", 2352: 'luckiest', 2353: 'figured', 2354: 'extremely', 2355: "'im", 2356: 'insulted', 2357: 'crimes', 2358: 'willy', 2359: 'iddilies', 2360: 'unfortunately', 2361: 'fox', 2362: "wife's", 2363: 'doreen', 2364: "how's", 2365: 'best', 2366: 'tax', 2367: 'maman', 2368: 'bust', 2369: 'rats', 2370: 'sadistic_barfly:', 2371: 'modestly', 2372: 'attractive_woman_#2:', 2373: 'rebuilt', 2374: 'pizzicato', 2375: 'war', 2376: 'sedaris', 2377: 'sad', 2378: 'sheriff', 2379: 'wieners', 2380: 'b', 2381: 'busiest', 2382: 'swooning', 2383: 'robin', 2384: 'genius', 2385: 'comforting', 2386: "duff's", 2387: 'trust', 2388: "havin'", 2389: 'stars', 2390: "takin'", 2391: 'burps', 2392: 'suspicious', 2393: 'mahatma', 2394: 'guts', 2395: 'knit', 2396: 'aziz', 2397: "how're", 2398: 'bring', 2399: 'unfamiliar', 2400: 'barstools', 2401: 'keeps', 2402: 'forward', 2403: 'jukebox_record:', 2404: 'quarry', 2405: '||comma||', 2406: 'santa', 2407: 'brains', 2408: 'tolerable', 2409: 'smiling', 2410: 'encores', 2411: 'feminist', 2412: 'ever', 2413: 'bridges', 2414: "linin'", 2415: 'whispered', 2416: 'average', 2417: 'odd', 2418: 'be-stainèd', 2419: 'almost', 2420: 'meeting', 2421: 'thanksgiving', 2422: 'medieval', 2423: 'we-we-we', 2424: 'whaddya', 2425: 'cola', 2426: 'senators:', 2427: 'renovations', 2428: 'yeah', 2429: 'cover', 2430: 'asking', 2431: 'caper', 2432: 'bury', 2433: 'porn', 2434: 'like', 2435: 'all', 2436: 'trip', 2437: 'trunk', 2438: 'cake', 2439: 'boxing', 2440: 'soaps', 2441: 'coughs', 2442: 'customers', 2443: 'gently', 2444: 'oughta', 2445: 'onassis', 2446: 'wolfcastle', 2447: 'mellow', 2448: 'rafter', 2449: 'dory', 2450: 'single-mindedness', 2451: 'bartender', 2452: 'stamps', 2453: 'aidens', 2454: 'emergency', 2455: 'tablecloth', 2456: 'curse', 2457: 'table', 2458: 'mudflap', 2459: 'check', 2460: "i'm", 2461: 'symphonies', 2462: 'wantcha', 2463: "marge's", 2464: 'comes', 2465: 'juan', 2466: 'illustrates', 2467: "they've", 2468: 'nauseous', 2469: 'humiliation', 2470: 'weeks', 2471: 'spender', 2472: 'toilet', 2473: 'whenever', 2474: 'lenny:', 2475: 'plum', 2476: "daughter's", 2477: 'buy', 2478: 'mm-hmm', 2479: "rentin'", 2480: 'supervising', 2481: 'bits', 2482: "'round", 2483: 'knowingly', 2484: "cuckold's", 2485: 'distraught', 2486: 'szyslak', 2487: 'amid', 2488: 'isle', 2489: 'unsourced', 2490: 'touch', 2491: 'ungrateful', 2492: 'sponge:', 2493: 'parking', 2494: 'courts', 2495: 'friends', 2496: 'anything', 2497: 'helen', 2498: 'thought', 2499: 'krabappel', 2500: 'half-beer', 2501: 'percent', 2502: 'idiot', 2503: 'crumble', 2504: 'barbed', 2505: 'makes', 2506: "floatin'", 2507: 'awfully', 2508: 'course', 2509: 'charming', 2510: 'opens', 2511: 'lights', 2512: 'unhook', 2513: 'boozebag', 2514: 'founded', 2515: 'treat', 2516: 'life-partner', 2517: 'f', 2518: 'hellhole', 2519: 'wise', 2520: 'prices', 2521: 'horribilis', 2522: 'bronco', 2523: 'club', 2524: 'tastes', 2525: "moe's_thoughts:", 2526: 'shotgun', 2527: 'kearney_zzyzwicz:', 2528: 'victory', 2529: 'souvenir', 2530: 'rotten', 2531: 'bank', 2532: 'lady_duff:', 2533: 'sprawl', 2534: 'duffman:', 2535: 'position', 2536: 'ragtime', 2537: 'till', 2538: 'sunk', 2539: 'crony', 2540: 'hounds', 2541: 'gay', 2542: 'fridge', 2543: 'sigh', 2544: 'otherwise', 2545: "number's", 2546: 'vampire', 2547: 'trees', 2548: 'gibson', 2549: 'offer', 2550: 'serum', 2551: 'investment', 2552: 'dictating', 2553: 'sobs', 2554: 'months', 2555: 'sure', 2556: 'marriage', 2557: 'fixes', 2558: 'glyco-load', 2559: 'hall', 2560: 'sec_agent_#1:', 2561: 'pointedly', 2562: 'wealthy', 2563: 'cracked', 2564: 'mayan', 2565: 'in-ground', 2566: 'wells', 2567: 'forty-seven', 2568: 'discuss', 2569: 'wild', 2570: 'poking', 2571: 'disappointed', 2572: 'can', 2573: 'getcha', 2574: 'harvey', 2575: 'illegally', 2576: 'slyly', 2577: 'las', 2578: 'juke', 2579: 'inserts', 2580: "games'd", 2581: 'lemonade', 2582: 'man_with_crazy_beard:', 2583: 'gabriel:', 2584: 'moe', 2585: 'st', 2586: 'curiosity', 2587: 'u', 2588: 'fudd', 2589: 'gorgeous', 2590: 'cheap', 2591: 'eliminate', 2592: 'dimly', 2593: 'contemplates', 2594: 'leonard', 2595: 'show-off', 2596: 'introduce', 2597: 'windshield', 2598: 'complaint', 2599: 'wordloaf', 2600: 'ronstadt', 2601: 'poplar', 2602: 'sports', 2603: "time's", 2604: 'competitive', 2605: "industry's", 2606: 'park', 2607: 'cans', 2608: 'goodnight', 2609: 'shop', 2610: 'solves', 2611: 'reliable', 2612: 'brockelstein', 2613: 'wood', 2614: 'wanna', 2615: 'abcs', 2616: 'gimme', 2617: 'glee', 2618: 'lovejoy', 2619: 'line', 2620: "smackin'", 2621: 'ripcord', 2622: 'drollery', 2623: 'common', 2624: 'loser', 2625: 'manjula', 2626: 'ugliness', 2627: 'patient', 2628: 'intimacy', 2629: 'inspection', 2630: 'advance', 2631: 'smiled', 2632: 'strokkur', 2633: 'kisser', 2634: 'tv_daughter:', 2635: 'remains', 2636: 'room', 2637: 'sacrilicious', 2638: 'mouth', 2639: 'takes', 2640: 'sampler', 2641: 'boring', 2642: 'negative', 2643: 'whole', 2644: 'pleading', 2645: 'sketch', 2646: 'spite', 2647: "he'd", 2648: 'quietly', 2649: 'kermit', 2650: 'handle', 2651: 'guy', 2652: 'foundation', 2653: 'country', 2654: 'poured', 2655: 'grinch', 2656: 'd', 2657: 'law-abiding', 2658: 'endorse', 2659: 'liver', 2660: 'whispers', 2661: 'marched', 2662: 'macaulay', 2663: 'initially', 2664: "showin'", 2665: 'stan', 2666: 'proof', 2667: 'elmer', 2668: "readin'", 2669: 'tied', 2670: 'us', 2671: 'alpha-crow', 2672: 'contemplated', 2673: 'flush', 2674: 'canyoner-oooo', 2675: 'pian-ee', 2676: 'comic_book_guy:', 2677: 'fresh', 2678: 'yoo', 2679: 'solved', 2680: 'finance', 2681: 'inclination', 2682: 'studio', 2683: 'ratted', 2684: 'advertise', 2685: 'chug', 2686: 'evening', 2687: 'sucking', 2688: 'wizard', 2689: 'more', 2690: "d'ya", 2691: 'phase', 2692: 'arrange', 2693: 'punch', 2694: 'dreary', 2695: 'clapping', 2696: 'breaks', 2697: 'inquiries', 2698: 'solid', 2699: 'fastest', 2700: 'suspended', 2701: 'stupidest', 2702: 'op', 2703: 'na', 2704: 'ref', 2705: 'pull', 2706: 'ruled', 2707: 'portfolium', 2708: 'committing', 2709: 'hunting', 2710: '_julius_hibbert:', 2711: 'keeping', 2712: 'clears', 2713: 'cheated', 2714: 'drown', 2715: 'duffman', 2716: 'saga', 2717: 'occupation', 2718: 'score', 2719: 'spanish', 2720: 'blend', 2721: 'tidy', 2722: 'distinct', 2723: 'grey', 2724: 'greedy', 2725: 'rump', 2726: 'played', 2727: "drivin'", 2728: 'duff', 2729: 'nonchalant', 2730: 'innocence', 2731: 'terrible', 2732: 'confession', 2733: 'glitz', 2734: 'anymore', 2735: 'crab', 2736: 'benefits', 2737: 'optimistic', 2738: 'considering', 2739: 'etc', 2740: 'dingy', 2741: 'sloppy', 2742: 'punk', 2743: 'self-satisfied', 2744: 'mill', 2745: 'super-nice', 2746: 'delivery_boy:', 2747: "collector's", 2748: 'without:', 2749: 'cold', 2750: 'edna_krabappel-flanders:', 2751: 'indeed', 2752: 'human', 2753: 'exit', 2754: 'derisive', 2755: 'apply', 2756: 'annoying', 2757: 'champignons', 2758: 'churchill', 2759: 'beer-jerks', 2760: 'title', 2761: 'witty', 2762: 'second', 2763: 'advertising', 2764: 'everyone', 2765: 'donate', 2766: 'swelling', 2767: 'kent_brockman:', 2768: 'edner', 2769: 'grease', 2770: 'celebrate', 2771: 'slightly', 2772: 'consoling', 2773: 'puffy', 2774: 'farthest', 2775: 'drank', 2776: 'happily', 2777: 'newsies', 2778: 'agent_miller:', 2779: 'capitalists', 2780: 'bees', 2781: 'displeased', 2782: 'troy', 2783: 'rules', 2784: 'gargoyle', 2785: "payin'", 2786: 'tease', 2787: 'rummy', 2788: "kid's", 2789: 'meals', 2790: 'bedtime', 2791: 'plastered', 2792: 'invite', 2793: 'hats', 2794: 'gentles', 2795: 'speed', 2796: 'a-b-', 2797: 'triangle', 2798: 'bless', 2799: 'birthday', 2800: 'chocolate', 2801: 'enhance', 2802: 'eva', 2803: 'cakes', 2804: 'spouses', 2805: 'regulations', 2806: 'tv_wife:', 2807: 'wh', 2808: 'pickled', 2809: 'jogging', 2810: 'musta', 2811: 'ducked', 2812: 'lousy', 2813: 'partly', 2814: 'swill', 2815: 'treehouse', 2816: 'hours', 2817: 'playhouse', 2818: 'apu', 2819: 'explanation', 2820: 'surgeonnn', 2821: 'apology', 2822: 'disgusted', 2823: 'ladder', 2824: 'dictator', 2825: "'", 2826: 'mozzarella', 2827: 'started', 2828: 'mumble', 2829: 'slobs', 2830: 'sounds', 2831: 'housework', 2832: 'march', 2833: "kids'", 2834: 'depressed', 2835: 'most:', 2836: "homer'll", 2837: 'broadway', 2838: 'rolls', 2839: 'mccall', 2840: 'held', 2841: 'ring', 2842: "hell's", 2843: 'joined', 2844: 'smitty:', 2845: 'ha', 2846: 'exhibit', 2847: 'humanity', 2848: 'mixed', 2849: 'compliments', 2850: 'botanical', 2851: 'mice', 2852: 'joining', 2853: 'compressions', 2854: 'intoxicated', 2855: 'much', 2856: 'cap', 2857: 'coach:', 2858: 'monkeyshines', 2859: 'tang', 2860: 'espn', 2861: "pullin'", 2862: 'label', 2863: 'hippies', 2864: "usin'", 2865: 'olive', 2866: 'plant', 2867: "moe's", 2868: 'children', 2869: 'inserted', 2870: 'or', 2871: 'maude', 2872: 'anti-crime', 2873: 'eighty-five', 2874: 'needed', 2875: 'lofty', 2876: 'libido', 2877: 'lotsa', 2878: 'fake', 2879: 'lurleen_lumpkin:', 2880: 'disposal', 2881: 'boat', 2882: 'rods', 2883: 'thing:', 2884: 'inspired', 2885: 'expect', 2886: 'able', 2887: 'nailed', 2888: 'little', 2889: 'mural', 2890: 'endorsed', 2891: 'municipal', 2892: 'used', 2893: 'easy', 2894: 'uneasy', 2895: "tonight's", 2896: 'charges', 2897: 'canyonero', 2898: 'fad', 2899: 'insecure', 2900: 'dreams', 2901: 'expose', 2902: 'move', 2903: 'ginger', 2904: 'hopeful', 2905: 'stu', 2906: 'haikus', 2907: 'lives', 2908: 'aims', 2909: 'pennies', 2910: 'freeze', 2911: 'shape', 2912: 'imported-sounding', 2913: 'hot-rod', 2914: 'singer', 2915: 'cooler', 2916: 'value', 2917: 'hanging', 2918: 'cockroach', 2919: 'straighten', 2920: "'tis", 2921: 'police', 2922: 'art', 2923: 'glummy', 2924: 'icy', 2925: 'struggling', 2926: 'saturday', 2927: 'blood', 2928: 'chauffeur:', 2929: 'worked', 2930: 'employment', 2931: 'bret:', 2932: 'bam', 2933: 'idea', 2934: 'frontrunner', 2935: 'friend', 2936: 'sweetly', 2937: 'terrified', 2938: 'scatter', 2939: 'low-blow', 2940: 'ohmygod', 2941: 'carl_carlson:', 2942: 'zinged', 2943: 'careful', 2944: 'sloe', 2945: 'we', 2946: 'swatch', 2947: 'chilly', 2948: 'please', 2949: 'ralph_wiggum:', 2950: 'puke', 2951: 'combination', 2952: 'ivanna', 2953: 'hah', 2954: 'beans', 2955: 'ron', 2956: 'proper', 2957: 'release', 2958: 'bill_james:', 2959: "bringin'", 2960: 'criminal', 2961: 'sieben-gruben', 2962: 'swear', 2963: 'ninety-eight', 2964: 'professor', 2965: 'cough', 2966: 'fifth', 2967: 'chase', 2968: 'nickels', 2969: 'cock', 2970: "o'problem", 2971: "c'mom", 2972: 'stocking', 2973: 'stomach', 2974: 'kinds', 2975: 'exhaust', 2976: 'mistresses', 2977: 'set', 2978: 'certain', 2979: 'surprised', 2980: 'fill', 2981: 'griffith', 2982: 'stealings', 2983: 'eternity', 2984: 'faith', 2985: "buffalo's", 2986: 'determined', 2987: 'due', 2988: "leavin'", 2989: 'folk', 2990: 'ambrosia', 2991: 'chance', 2992: 'deeper', 2993: 'furiously', 2994: 'lovelorn', 2995: 'charlie', 2996: 'hollowed-out', 2997: 'uncreeped-out', 2998: 'artie_ziff:', 2999: 'linda_ronstadt:', 3000: 'only', 3001: 'nagurski', 3002: 'funniest', 3003: 'kenny', 3004: 'seem', 3005: 'bounced', 3006: 'lard', 3007: 'broken:', 3008: "hadn't", 3009: 'drag', 3010: 'half', 3011: 'sanitation', 3012: 'trail', 3013: 'fonzie', 3014: 'um', 3015: 'investigating', 3016: 'snort', 3017: 'greetings', 3018: 'crime', 3019: 'throat', 3020: 'tow-talitarian', 3021: 'brunswick', 3022: 'slaves', 3023: 'occasion', 3024: 'muffled', 3025: 'talk-sings', 3026: 'spine', 3027: 'goldarnit', 3028: 'example', 3029: 'cadillac', 3030: 'chairman', 3031: 'difficult', 3032: 'corner', 3033: 'animals', 3034: 'nicer', 3035: 'hook', 3036: 'which', 3037: 'equivalent', 3038: 'sap', 3039: 'avec', 3040: 'group', 3041: 'blew', 3042: 'carpet', 3043: 'washouts', 3044: 'illegal', 3045: 'refreshing', 3046: 'mad', 3047: 'pine', 3048: 'dexterous', 3049: 'paintings', 3050: "hole'", 3051: 'quite', 3052: 'occurs', 3053: 'bush', 3054: 'ivory', 3055: 'poem', 3056: 'snotty', 3057: 'eventually', 3058: 'sotto', 3059: 'hitler', 3060: 'incriminating', 3061: "men's", 3062: 'lot', 3063: 'tell', 3064: 'carl', 3065: 'beards', 3066: 'americans', 3067: 'scum', 3068: 'kills', 3069: 'oooh', 3070: 'butts', 3071: 'ruint', 3072: 'backbone', 3073: 'halfway', 3074: 'dropped', 3075: 'squadron', 3076: 'old_jewish_man:', 3077: 'trenchant', 3078: 'wad', 3079: 'grampa', 3080: 'parenting', 3081: 'brain', 3082: 'erasers', 3083: 'beer', 3084: 'eyeing', 3085: 'german', 3086: 'helping', 3087: 'toxins', 3088: 'got', 3089: 'rid', 3090: 'anyone', 3091: 'kool', 3092: 'pre-recorded', 3093: 'diddilies', 3094: 'four', 3095: 'versus', 3096: 'home', 3097: 'uninhibited', 3098: 'irishman', 3099: 'spitting', 3100: 'domestic', 3101: 'ridiculous', 3102: 'since', 3103: 'mostrar', 3104: 'wipes', 3105: 'easier', 3106: 'legend', 3107: 'huddle', 3108: 'wiggle', 3109: 'rat-like', 3110: "idea's", 3111: 'football', 3112: 'germans', 3113: 'badmouth', 3114: 'commission', 3115: 'done', 3116: 'point', 3117: 'disgraceful', 3118: 'menace', 3119: 'website', 3120: 'distributor', 3121: 'highest', 3122: 'bumbling', 3123: 'get', 3124: 'du', 3125: 'equal', 3126: 'under', 3127: 'lie', 3128: 'scruffy_blogger:', 3129: 'captain', 3130: 'wow', 3131: 'warm_female_voice:', 3132: 'collateral', 3133: 'happy', 3134: 'painting', 3135: 'slice', 3136: 'superpower', 3137: 'curds', 3138: 'mathis', 3139: 'specializes', 3140: 'accepting', 3141: 'queer', 3142: 'shooting', 3143: 'their', 3144: 'nervous', 3145: 'planning', 3146: 'found', 3147: 'terrorizing', 3148: 'conditioners', 3149: 'aiden', 3150: 'nemo', 3151: 'agnes_skinner:', 3152: 'feed', 3153: 'royal', 3154: '||semicolon||', 3155: 'rainier', 3156: 'firing', 3157: 'socratic', 3158: 'mccarthy', 3159: 'build', 3160: 'pressure', 3161: 'elaborate', 3162: 'maher', 3163: 'notorious', 3164: 'down', 3165: 'wagering', 3166: 'top', 3167: 'spotting', 3168: 'cutting', 3169: 'parents', 3170: 'rather', 3171: 'eggshell', 3172: 'exited', 3173: 'completing', 3174: 'leaving', 3175: 'suspiciously', 3176: 'years', 3177: 'wednesday', 3178: 'town', 3179: 'non-losers', 3180: 'summer', 3181: 'colossal', 3182: 'seems', 3183: 'pretzels', 3184: 'caholic', 3185: 'heather', 3186: 'allegiance', 3187: 'gees', 3188: 'gunk', 3189: 'reaction', 3190: 'option', 3191: 'start', 3192: 'potatoes', 3193: 'compare', 3194: 'rock', 3195: 'denver', 3196: 'yoink', 3197: 'scrape', 3198: 'padre', 3199: 'exchanged', 3200: 'sell', 3201: 'dollar', 3202: 'doing', 3203: 'ground', 3204: '1973', 3205: 'obvious', 3206: 'fumigated', 3207: 'xx', 3208: 'though:', 3209: 'renee', 3210: 'brothers', 3211: 'vomit', 3212: "where'd", 3213: 'crushed', 3214: 'foil', 3215: 'student', 3216: 'least', 3217: 'murdoch', 3218: 'buddies', 3219: 'lecture', 3220: 'incognito', 3221: 'bag', 3222: 'phasing', 3223: 'stares', 3224: 'moonshine', 3225: 'forgotten', 3226: 'neither', 3227: 'friday', 3228: 'eddie', 3229: 'bee', 3230: 'three-man', 3231: 'hanh', 3232: 'ought', 3233: 'bragging', 3234: 'it:', 3235: 'fat', 3236: 'marjorie', 3237: 'schedule', 3238: 'choose', 3239: 'senators', 3240: 'besides', 3241: 'camp', 3242: 'decide:', 3243: 'cousin', 3244: 'trick', 3245: 'bye', 3246: 'crippling', 3247: 'widow', 3248: 'cookies', 3249: 'dan', 3250: 'pugilist', 3251: 'presents', 3252: 'pre-game', 3253: 'taxi', 3254: 'said', 3255: 'aside', 3256: 'assistant', 3257: 'spews', 3258: 'trying', 3259: 'pardon', 3260: 'beaumarchais', 3261: 'blurbs', 3262: 'presided', 3263: 'drunk', 3264: "costume's", 3265: 'hour', 3266: 'drive', 3267: 'awe', 3268: 'lying', 3269: 'jane', 3270: 'nine', 3271: 'issuing', 3272: 'hurting', 3273: 'gil_gunderson:', 3274: 'chest', 3275: 'flynt', 3276: 'toys', 3277: 'spent', 3278: 'connor', 3279: 'american', 3280: 'led', 3281: "it'll", 3282: 'someplace', 3283: 'laramie', 3284: 'guilt', 3285: 'polish', 3286: 'covers', 3287: "tomorrow's", 3288: 'warren', 3289: 'wondered', 3290: 'after', 3291: 'christian', 3292: 'catch-phrase', 3293: 'borrow', 3294: 'recruiter', 3295: 'higher', 3296: 'rueful', 3297: 'dea-d-d-dead', 3298: 'indignant', 3299: 'patty_bouvier:', 3300: 'ihop', 3301: 'mistake', 3302: 'branding', 3303: 'mind', 3304: 'fears', 3305: 'address', 3306: 'pit', 3307: 'ha-ha', 3308: 'neighbors', 3309: 'chain', 3310: 'decent', 3311: 'faint', 3312: 'year', 3313: 'eu', 3314: 'tanked-up', 3315: 'whatever', 3316: 'plow', 3317: 'loved', 3318: 'background', 3319: 'full-blooded', 3320: 'wrestling', 3321: "haven't", 3322: 'wife-swapping', 3323: 'exactly', 3324: '530', 3325: 'ringing', 3326: 'flustered', 3327: 'marvelous', 3328: 'yesterday', 3329: 'tasimeter', 3330: 'christmas', 3331: 'burg', 3332: 'languages', 3333: 'garbage', 3334: 'lend', 3335: 'inflated', 3336: 'shock', 3337: 'duty', 3338: 'vegas', 3339: 'chuck', 3340: 'iran', 3341: 'sniffs', 3342: 'saucy', 3343: "soundin'", 3344: 'cockroaches', 3345: 'civilization', 3346: 'lily-pond', 3347: 'young_homer:', 3348: 'cologne', 3349: 'provide', 3350: 'helps', 3351: 'pulls', 3352: 'skins', 3353: 'honest', 3354: 'putting', 3355: 'solely', 3356: 'ride', 3357: 'snout', 3358: 'breathtaking', 3359: 'chew', 3360: 'sir', 3361: 'windowshade', 3362: 'deer', 3363: 'rumor', 3364: 'bartenders', 3365: 'eighteen', 3366: 'woulda', 3367: 'gives', 3368: 'britannia', 3369: "dolph's_dad:", 3370: 'smelly', 3371: 'remodel', 3372: 'brockman', 3373: 'landlord', 3374: 'hear', 3375: 'attractive', 3376: 'appreciated', 3377: 'instead', 3378: 'r', 3379: 'wishing', 3380: 'our', 3381: 'gums', 3382: 'sight-unseen', 3383: 'ninety-six', 3384: 'paris', 3385: 'up-bup-bup', 3386: 'need', 3387: 'forget-me-drinks', 3388: 'conversation', 3389: 'gimmicks', 3390: 'forgive', 3391: 'ale', 3392: 'bet', 3393: 'pouring', 3394: 'stinks', 3395: 'popping', 3396: 'oh-so-sophisticated', 3397: 'reflected', 3398: 'reconsidering', 3399: 'chosen', 3400: 'computer', 3401: "breakin'", 3402: 'director:', 3403: 'voyager', 3404: 'injury', 3405: 'riveting', 3406: "lookin'", 3407: 'died', 3408: 'should', 3409: 'clammy', 3410: 'para', 3411: 'schorr', 3412: 'full-time', 3413: 'vin', 3414: 'twenty-two', 3415: 'authorized', 3416: '7-year-old_brockman:', 3417: 'whoa-ho', 3418: 'water', 3419: 'noggin', 3420: 'putty', 3421: 'oil', 3422: 'dogs', 3423: 'k-zug', 3424: 'irish', 3425: 'snake', 3426: 'cheat', 3427: 'snorts', 3428: 'brilliant', 3429: 'goblins', 3430: 'squeeze', 3431: 'reached', 3432: "what'll", 3433: 'form', 3434: 'willing', 3435: 'harder', 3436: 'exception:', 3437: 'reporter:', 3438: 'dna', 3439: 'foibles', 3440: 'detective_homer_simpson:', 3441: 'duff_announcer:', 3442: 'furniture', 3443: 'wayne:', 3444: 'coming', 3445: 'bash', 3446: 'fustigate', 3447: 'gang', 3448: 'appointment', 3449: 'creates', 3450: 'falsetto', 3451: 'cigarettes', 3452: 'shaved', 3453: 'jury', 3454: 'improved', 3455: "wallet's", 3456: 'flat', 3457: 'smile:', 3458: 'believer', 3459: 'face', 3460: 'anyway', 3461: 'cecil', 3462: 'life-extension', 3463: 'agent', 3464: 'releasing', 3465: 'unattended', 3466: 'cowboy', 3467: 'video', 3468: 'pledge', 3469: 'shows', 3470: 'hugh', 3471: 'attend', 3472: 'de', 3473: 'germs', 3474: 'nuts', 3475: 'necessary', 3476: 'boisterous', 3477: 'outlook', 3478: 'measurements', 3479: 'cheery', 3480: "jimbo's_dad:", 3481: 'teacup', 3482: 'agent_johnson:', 3483: 'pillows', 3484: 'puzzled', 3485: 'quero', 3486: 'disco_stu:', 3487: 'one-hour', 3488: 'ugh', 3489: 'mimes', 3490: 'delicious', 3491: 'been', 3492: 'militia', 3493: 'blue', 3494: 'pepsi', 3495: 'musical', 3496: 'thirty-thousand', 3497: 'blooded', 3498: 'twerpy', 3499: 'ebullient', 3500: 'breath', 3501: 'blown', 3502: 'rekindle', 3503: 'handing', 3504: 'ivy-covered', 3505: 'inches', 3506: 'punishment', 3507: 'julep', 3508: 'dank', 3509: 'fall', 3510: 'cage', 3511: 'nursemaid', 3512: 'mexican_duffman:', 3513: 'future', 3514: 'woman_bystander:', 3515: 'scotch', 3516: 'babar', 3517: 'rainbows', 3518: 'bonding', 3519: 'sleeping', 3520: 'sucker', 3521: 'releases', 3522: 'gayer', 3523: '_montgomery_burns:', 3524: 'treats', 3525: 'kneeling', 3526: 'hiring', 3527: 'fire', 3528: 'unjustly', 3529: 'th', 3530: 'mint', 3531: 'tomahto', 3532: 'driver', 3533: '||period||', 3534: 'ingested', 3535: 'this:', 3536: 'ah', 3537: 'elect', 3538: 'string', 3539: 'skinny', 3540: 'streetcorner', 3541: 'jumps', 3542: 'whoopi', 3543: 'moron', 3544: 'today', 3545: 'woo-hoo', 3546: "that's", 3547: 'noble', 3548: 'worthless', 3549: 'skills', 3550: 'dramatically', 3551: 'nelson', 3552: 'sister', 3553: 'loudly', 3554: 'manipulation', 3555: 'lone', 3556: 'alcoholism', 3557: 'dice', 3558: 'quit', 3559: 'spamming', 3560: 'administration', 3561: 'quick-like', 3562: 'such', 3563: 'asses', 3564: "don'tcha", 3565: 'causes', 3566: 'cheese', 3567: 'cutest', 3568: 'halloween', 3569: 'general', 3570: 'denser', 3571: 'blob', 3572: 'adventure', 3573: 'type', 3574: 'mason', 3575: 'booze-bags', 3576: 'nods', 3577: 'prime', 3578: 'faulkner', 3579: 'stein-stengel-', 3580: 'wire', 3581: 'squashing', 3582: "who'll", 3583: 'piece', 3584: 'blissful', 3585: 'scratcher', 3586: 'philip', 3587: 'bar', 3588: 'nbc', 3589: "guy's", 3590: 'adjust', 3591: 'eurotrash', 3592: 'conversations', 3593: 'bono', 3594: 'bride', 3595: 'peanuts', 3596: 'laws', 3597: 'knees', 3598: 'attracted', 3599: 'fourth', 3600: 'rector', 3601: 'dump', 3602: 'chili', 3603: 'playoff', 3604: 'community', 3605: 'maitre', 3606: 'alva', 3607: 'gr-aargh', 3608: 'fuzzlepitch', 3609: 'halvsies', 3610: 'runaway', 3611: 'event', 3612: 'politicians', 3613: 'checks', 3614: 'brotherhood', 3615: 'by', 3616: 'lift', 3617: 'browns', 3618: 'lobster', 3619: 'hygienically', 3620: "c'mon", 3621: 'ball-sized', 3622: 'ew', 3623: 'plaintive', 3624: 'lawyer', 3625: 'ultimate', 3626: "lisa's", 3627: 'environment', 3628: 'log', 3629: "edna's", 3630: 'three', 3631: 'excited', 3632: 'street', 3633: 'feelings', 3634: 'malted', 3635: 'supermodel', 3636: 'joint', 3637: 'bar_rag:', 3638: 'social', 3639: "makin'", 3640: 'party', 3641: 'sobriety', 3642: 'monkey', 3643: "murphy's", 3644: 'toledo', 3645: 'belly-aching', 3646: 'switched', 3647: 'searching', 3648: 'finger', 3649: 'bon', 3650: 'twelveball', 3651: 'see', 3652: 'basement', 3653: "bart'd", 3654: 'neighbor', 3655: 'read', 3656: 'seen', 3657: 'dignified', 3658: 'tried', 3659: 'driveability', 3660: 'barney-type', 3661: 'ping-pong', 3662: 'nigeria', 3663: 'ahh', 3664: 'seconds', 3665: 'stationery', 3666: "s'okay", 3667: 'experience', 3668: 'fumes', 3669: 'graves', 3670: 'games', 3671: 'international', 3672: 'recap:', 3673: 'dads', 3674: 'dive', 3675: 'remembering', 3676: 'needs', 3677: 'hubub', 3678: 'huh', 3679: 'wars', 3680: 'smithers', 3681: 'the_rich_texan:', 3682: 'flophouse', 3683: 'lou:', 3684: 'increased', 3685: 'vampires', 3686: 'dressed', 3687: 'bindle', 3688: 'wrecking', 3689: 'microbrew', 3690: 'post-suicide', 3691: 'you', 3692: 'cursed', 3693: 'wham', 3694: 'telegraph', 3695: 'intakes', 3696: 'doubt', 3697: 'milk', 3698: 'envy-tations', 3699: "eatin'", 3700: 'bucks', 3701: 'anderson', 3702: 'perhaps', 3703: 'kirk', 3704: 'alley', 3705: 'flashing', 3706: 'happiness', 3707: 'though', 3708: 'blossoming', 3709: 'whoa', 3710: "gettin'", 3711: 'unearth', 3712: 'fat-free', 3713: 'dad', 3714: 'temp', 3715: 'comedy', 3716: 'grub', 3717: 'booth', 3718: 'grabs', 3719: "narratin'", 3720: 'young_barfly:', 3721: 'realized', 3722: 'alien', 3723: 'wears', 3724: 'burp', 3725: 'pets', 3726: 'ease', 3727: 'first', 3728: "what's", 3729: 'benjamin', 3730: 'cletus_spuckler:', 3731: 'studied', 3732: "president's", 3733: 'working', 3734: 'ehhhhhh', 3735: 'sec_agent_#2:', 3736: 'shocked', 3737: 'boned', 3738: 'writers', 3739: 'sinister', 3740: 'growing', 3741: 'lenny', 3742: 'staying', 3743: 'yo', 3744: 'contest', 3745: 'comic', 3746: 'looser', 3747: 'prayer', 3748: 'awful', 3749: 'clips', 3750: 'blues', 3751: 'rap', 3752: 'attempting', 3753: 'die', 3754: 'de-scramble', 3755: 'cheapskates', 3756: 'paying', 3757: 'cozy', 3758: 'write', 3759: 'kidding', 3760: 'patterns', 3761: 'sweaty', 3762: 'doll-baby', 3763: 'reach', 3764: 'pleasant', 3765: 'stripe', 3766: 'misconstrue', 3767: 'onions', 3768: 'virile', 3769: 'wins', 3770: 'winded', 3771: 'omit', 3772: 'smug', 3773: 'world', 3774: 'dealie', 3775: 'innocuous', 3776: "how'd", 3777: ':', 3778: 'whale', 3779: 'could', 3780: 'dying', 3781: 'fanciest', 3782: 'fist', 3783: 'surprised/thrilled', 3784: 'updated', 3785: 'microphone', 3786: 'barely', 3787: "swishifyin'", 3788: 'kentucky', 3789: 'little_man:', 3790: 'watched', 3791: 'snitch', 3792: 'snatch', 3793: 'ya', 3794: 'bloodball', 3795: 'prison', 3796: 'bedroom', 3797: 'indifference', 3798: 'enthusiastically', 3799: 'patty', 3800: 'schnapps', 3801: 'chumbawamba', 3802: 'decide', 3803: 'brag', 3804: "car's", 3805: 'medical', 3806: 'shall', 3807: "i've", 3808: 'midnight', 3809: 'discussing', 3810: 'awake', 3811: 'lifts', 3812: 'limited', 3813: 'including', 3814: 'mild', 3815: 'crossed', 3816: 'broom', 3817: 'toe', 3818: 'safe', 3819: 'miss', 3820: 'script', 3821: 'boxcar', 3822: 'swimmers', 3823: 'cleveland', 3824: 'gal', 3825: 'flash-fry', 3826: 'loafers', 3827: 'carll', 3828: 'breathless', 3829: 'cleaned', 3830: 'attach', 3831: 'jay_leno:', 3832: 'alcohol', 3833: 'talkative', 3834: 'pushing', 3835: 'reward', 3836: 'extended', 3837: 'jasper_beardly:', 3838: 'cronies', 3839: 'combines', 3840: 'my-y-y-y-y-y', 3841: 'involving', 3842: 'measure', 3843: "smokin'", 3844: 'edelbrock', 3845: 'spreads', 3846: 'peaked', 3847: 'kucinich', 3848: 'corkscrew', 3849: "secret's", 3850: 'quiet', 3851: "football's", 3852: 'adrift', 3853: 'wolfe', 3854: 'koji', 3855: 'darkness', 3856: 'dazed', 3857: 'affectations', 3858: 'politics', 3859: 'leathery', 3860: 'honeys', 3861: 'blessing', 3862: "d'", 3863: 'owner', 3864: 'generosity', 3865: 'robot', 3866: 'control', 3867: 'cloudy', 3868: 'developed', 3869: 'cesss', 3870: 'dollface', 3871: 'sky', 3872: 'scout', 3873: 'corpses', 3874: 'bumblebee_man:', 3875: 'lizard', 3876: 'lucinda', 3877: 'lance', 3878: 'approval', 3879: '&', 3880: 'luv', 3881: 'enforced', 3882: 'lazy', 3883: 'acquitted', 3884: 'chicks', 3885: 'list', 3886: 'smugglers', 3887: 'large', 3888: 'murderously', 3889: 'simpson', 3890: 'excuse', 3891: "weren't", 3892: 'silence', 3893: 'newest', 3894: 'limericks', 3895: 'shakes', 3896: 'bullet-proof', 3897: 'prohibit', 3898: 'divine', 3899: 'newspaper', 3900: 'priest', 3901: 'began', 3902: 'rough', 3903: 'coms', 3904: 'quick', 3905: 'spilled', 3906: "you'll", 3907: 'thought_bubble_homer:', 3908: 'else', 3909: 'clock', 3910: 'pepper', 3911: 'professor_jonathan_frink:', 3912: 'in-in-in', 3913: "what're", 3914: "we'll", 3915: 'bar:', 3916: 'flames', 3917: 'finest', 3918: 'grab', 3919: 'tired', 3920: 'man_at_bar:', 3921: 'email', 3922: 'jelly', 3923: 'jewish', 3924: 'gargoyles', 3925: 'pulitzer', 3926: 'picky', 3927: 'pussycat', 3928: 'vehicle', 3929: 'hangover', 3930: 'heart', 3931: 'cocoa', 3932: 'begging', 3933: 'hare-brained', 3934: 'doug:', 3935: '_babcock:', 3936: 'named', 3937: 'pitch', 3938: 'menacing', 3939: 'voice:', 3940: 'captain:', 3941: 'gallon', 3942: 'vicious', 3943: 'whee', 3944: 'black', 3945: 'damn', 3946: 'hootie', 3947: 'federal', 3948: 's-a-u-r-c-e', 3949: 'presidents', 3950: 'palmerston', 3951: 'arimasen', 3952: 'missed', 3953: 'thrust', 3954: 'loud', 3955: 'doof', 3956: 'banquet', 3957: 'sitar', 3958: 'service', 3959: 'business', 3960: 'ton', 3961: 'vincent', 3962: 'augustus', 3963: 'know', 3964: 'accent', 3965: 'nucular', 3966: 'little_hibbert_girl:', 3967: 'kay', 3968: 'catching', 3969: 'jerry', 3970: "table's", 3971: 'clams', 3972: 'ancestors', 3973: 'pipes', 3974: 'channel', 3975: 'friendship', 3976: 'incapable', 3977: 'lifters', 3978: 'invulnerable', 3979: 'puke-holes', 3980: 'short_man:', 3981: 'self', 3982: 'real', 3983: 'exultant', 3984: 'witches', 3985: 'mechanical', 3986: '2nd_voice_on_transmitter:', 3987: 'hitchhike', 3988: 'freed', 3989: 'bliss', 3990: 'always', 3991: 'fbi', 3992: 'crayola', 3993: "thing's", 3994: 'ford', 3995: 'fica', 3996: 'charm', 3997: 'bums', 3998: 'deal', 3999: 'bail', 4000: 'proposing', 4001: 'windex', 4002: 'sixteen', 4003: "somethin':", 4004: 'selma', 4005: 'homer_simpson:', 4006: 'midge', 4007: 'elite', 4008: 'ahhh', 4009: 'tones', 4010: "dimwit's", 4011: 'pretending', 4012: 'consciousness', 4013: 'ga', 4014: 'patting', 4015: 'torn', 4016: 'lipo', 4017: 'wudgy', 4018: 'shoot', 4019: 'connection', 4020: 'tee', 4021: 'billiard', 4022: 'beam', 4023: 'hollywood', 4024: 'rest', 4025: 'great', 4026: 'barber', 4027: 'protecting', 4028: 'não', 4029: 'fritz', 4030: 'scream', 4031: 'bastard', 4032: 'tv_announcer:', 4033: 'waters', 4034: 'lager', 4035: 'mocking', 4036: 'delicately', 4037: 'six-barrel', 4038: 'b-day', 4039: 'jerky', 4040: 'positive', 4041: 'braun:', 4042: 'terminated', 4043: 'buzziness', 4044: 'work', 4045: 'david_byrne:', 4046: 'super-tough', 4047: 'fierce', 4048: 'tiger', 4049: 'insensitive', 4050: 'thorn', 4051: 'stagehand:', 4052: 'clap', 4053: 'ruuuule', 4054: 'have', 4055: 'agree', 4056: 'instrument', 4057: 'frink', 4058: 'hillbillies', 4059: 'into', 4060: 'sudoku', 4061: 'chief_wiggum:', 4062: 'stage', 4063: 'napkins', 4064: 'had', 4065: 'said:', 4066: 'jar', 4067: 'normals', 4068: 'welcome', 4069: 'palm', 4070: 'available', 4071: 'running', 4072: 'e-z', 4073: 'hammy', 4074: 'fishing', 4075: 'aisle', 4076: 'trashed', 4077: 'phrase', 4078: "nixon's", 4079: 'dirt', 4080: 'scanning', 4081: 'superdad', 4082: 'apulina', 4083: 'daaaaad', 4084: 'generously', 4085: 'raining', 4086: 'kids', 4087: 'cheer', 4088: 'deserve', 4089: 'wistful', 4090: 'milhouses', 4091: 'pall', 4092: 'per', 4093: 'haiti', 4094: 'figure', 4095: 'lonely', 4096: 'obama', 4097: 'tape', 4098: 'softer', 4099: 'signed', 4100: 'jeers', 4101: 'complaining', 4102: 'commit', 4103: 'chuckles', 4104: 'the_edge:', 4105: 'usual', 4106: 'bike', 4107: 'patented', 4108: 'karaoke', 4109: 'wasting', 4110: 'ralphie', 4111: 'depressant', 4112: 'travel', 4113: 'vanities', 4114: 'cheerleaders:', 4115: 'project', 4116: 'hans:', 4117: "we'd", 4118: 'awareness', 4119: 'smells', 4120: 'speaking', 4121: "askin'", 4122: 'shells', 4123: "treatin'", 4124: 'four-star', 4125: 'health_inspector:', 4126: 'total', 4127: 'totalitarians', 4128: 'espousing', 4129: 'promise', 4130: 'beefs', 4131: 'aghast', 4132: 'resigned', 4133: 'turned', 4134: 'past', 4135: 'elizabeth', 4136: 'hemorrhage-amundo', 4137: 'waterfront', 4138: 'wayne', 4139: 'bottoms', 4140: 'huhza', 4141: 'seven', 4142: 'festival', 4143: 'turlet', 4144: 'goo', 4145: 'writing', 4146: 'pigs', 4147: 'verticality', 4148: 'dejected_barfly:', 4149: 'ineffective', 4150: 'bar-boy', 4151: 'housing', 4152: 'wreck', 4153: 'settles', 4154: 'sissy', 4155: 'bumped', 4156: 'mail', 4157: '3rd_voice:', 4158: 'cow', 4159: 'marmaduke', 4160: 'oils', 4161: 'two-drink', 4162: 'simplest', 4163: 'adult_bart:', 4164: 'changes', 4165: 'dress', 4166: 'rancid', 4167: 'admitting', 4168: 'shaker', 4169: 'jubilant', 4170: 'buttons', 4171: 'joy', 4172: 'sheet', 4173: 'pipe', 4174: 'nash', 4175: 'ancient', 4176: 'spoon', 4177: 'delays', 4178: 'proudly', 4179: 'other_book_club_member:', 4180: 'hangout', 4181: 'tsking', 4182: 'him', 4183: "department's", 4184: 'snaps', 4185: 'poison', 4186: 'rented', 4187: 'ow', 4188: 'bottle', 4189: 'special', 4190: 'bumpy-like', 4191: 'terrace', 4192: 'supermarket', 4193: 'lennyy', 4194: 'add', 4195: 'astonishment', 4196: 'princess', 4197: 'quimby', 4198: 'wall', 4199: 'savings', 4200: 'stored', 4201: 'jackson', 4202: 'snackie', 4203: 'u2:', 4204: 'who', 4205: 'mystery', 4206: 'alarm', 4207: 'parked', 4208: 'killed', 4209: 'à', 4210: "renovatin'", 4211: 'casual', 4212: 'caricature', 4213: 'riding', 4214: 'hunky', 4215: 'hoagie', 4216: 'nein', 4217: 'itself', 4218: 'lumpa', 4219: 'naegle', 4220: 'waste', 4221: 'wage', 4222: 'finished', 4223: 'hug', 4224: 'wanted', 4225: 'procedure', 4226: "dog's", 4227: 'file', 4228: '8', 4229: 'plain', 4230: "burnin'", 4231: 'mmm-hmm', 4232: 'catch', 4233: 'chuckling', 4234: 'monroe', 4235: 'jeff_gordon:', 4236: 'jockey', 4237: 'shout', 4238: 'sports_announcer:', 4239: "tryin'", 4240: 'traitor', 4241: 'pretends', 4242: 'triumphantly', 4243: "santa's", 4244: 'ballclub', 4245: 'faceful', 4246: 'teenage_homer:', 4247: 'mexican', 4248: "cleanin'", 4249: 'plus', 4250: 'brooklyn', 4251: 'society_matron:', 4252: 'affects', 4253: 'plastic', 4254: 'duel', 4255: 'fuss', 4256: 'sleigh-horses', 4257: 'someday', 4258: 'tolerance', 4259: 'buffet', 4260: 'fantasy', 4261: 'level', 4262: 'salt', 4263: 'back', 4264: 'lease', 4265: 'lloyd:', 4266: 'barney-shaped_form:', 4267: 'inspector', 4268: 'mona_simpson:', 4269: 'shoulder', 4270: "tinklin'", 4271: 'streetlights', 4272: 'smile', 4273: '/', 4274: 'watashi', 4275: 'wuss', 4276: 'mother', 4277: 'hurts', 4278: 'jägermeister', 4279: 'calendars', 4280: 'karaoke_machine:', 4281: 'think', 4282: 'killarney', 4283: 'hibbert', 4284: 'therefore', 4285: 'bursts', 4286: 'empty', 4287: 'between', 4288: 'martini', 4289: 'effects', 4290: 'tuborg', 4291: 'shaken', 4292: 'slipped', 4293: 'scooter', 4294: 'knuckles', 4295: 'tank', 4296: "fightin'", 4297: 'nurse', 4298: "can't-believe-how-bald-he-is", 4299: 'grind', 4300: 'sticking-place', 4301: "england's", 4302: 'dennis_conroy:', 4303: 'fine', 4304: 'virility', 4305: 'cocking', 4306: 'campaign', 4307: 'frightened', 4308: 'tigers', 4309: 'miserable', 4310: 'lodge', 4311: 'matter-of-fact', 4312: 'modest', 4313: 'funny', 4314: 'low', 4315: 'wearing', 4316: 'tree', 4317: 'archaeologist', 4318: 'using', 4319: 'infor', 4320: 'site', 4321: 'tv_father:', 4322: 'selection', 4323: 'bunch', 4324: 'feedbag', 4325: 'complicated', 4326: 'in', 4327: 'beef', 4328: 'belch', 4329: 'peanut', 4330: 'stool', 4331: 'shaking', 4332: "smokin'_joe_frazier:", 4333: 'forty-five', 4334: 'buyer', 4335: 'going', 4336: 'clench', 4337: 'wife', 4338: 'clown-like', 4339: 'rasputin', 4340: 'gasp', 4341: 'marvin', 4342: 'selective', 4343: 'poisoning', 4344: 'pub', 4345: 'bannister', 4346: 'factor', 4347: 'valuable', 4348: 'blocked', 4349: 'laughing', 4350: 'foam', 4351: 'model', 4352: 'dumb-asses', 4353: 'furious', 4354: 'author', 4355: 'safer', 4356: 'twelve-step', 4357: 'super-genius', 4358: 'magazine', 4359: "starla's", 4360: 'easy-going', 4361: 'compromise:', 4362: 'cop', 4363: 'nah', 4364: 'lloyd', 4365: 'worldview', 4366: 'sour', 4367: 'samples', 4368: 'soul-crushing', 4369: 'fact', 4370: 'principal', 4371: 'knives', 4372: 'tickets', 4373: 'cruiser', 4374: 'sniffles', 4375: 'live', 4376: 'permanent', 4377: 'vote', 4378: 'frazier', 4379: 't-shirt', 4380: 'experienced', 4381: 'delightful', 4382: 'eh', 4383: 'ashtray', 4384: 'sanitary', 4385: 'become', 4386: 'leftover', 4387: 'earlier', 4388: 'disguised', 4389: 'certificate', 4390: 'boxing_announcer:', 4391: 'coy', 4392: 'pays', 4393: 'slogan', 4394: 'snow', 4395: 'front', 4396: 'somehow', 4397: 'brief', 4398: 'shoulders', 4399: 'gol-dangit', 4400: 'slugger', 4401: 'mr', 4402: 'installed', 4403: 'bottomless', 4404: 'all-american', 4405: 'stupid', 4406: 'enemy', 4407: 'mom', 4408: 'groans', 4409: 'deeply', 4410: 'eye', 4411: 'belches', 4412: 'indigenous', 4413: 'chanting', 4414: 'surgery', 4415: "larry's", 4416: 'massachusetts', 4417: "could've", 4418: 'crack', 4419: 'gotta', 4420: 'unless', 4421: 'defeated', 4422: 'letter', 4423: "renee's", 4424: 'w', 4425: 'alter', 4426: 'sassy', 4427: 'somebody', 4428: 'anybody', 4429: 'additional-seating-capacity', 4430: "duelin'", 4431: 'tomato', 4432: 'merchants', 4433: 'andrew', 4434: 'mall', 4435: 'cash', 4436: 'idioms', 4437: 'man_with_tree_hat:', 4438: 'record', 4439: 'dancing', 4440: 'blame', 4441: 'umm', 4442: 'formico:', 4443: "hasn't", 4444: 'hang', 4445: 'groan', 4446: "'evening", 4447: '$42', 4448: 'worse', 4449: 'rub-a-dub', 4450: 'shove', 4451: 'someone', 4452: 'son', 4453: "handwriting's", 4454: 'grenky', 4455: 'shorter', 4456: "goin'", 4457: 'hands', 4458: 'boozehound', 4459: 'platinum', 4460: 'lise:', 4461: 'busted', 4462: 'friendly', 4463: 'tip', 4464: 'pancakes', 4465: 'mirthless', 4466: 'culkin', 4467: 'source', 4468: 'dark', 4469: 'flown', 4470: 'k', 4471: 'family-owned', 4472: '4x4', 4473: 'thomas', 4474: 'beers', 4475: 'waylon_smithers:', 4476: 'and-and', 4477: 'dating', 4478: 'perverted', 4479: 'kent', 4480: 'begin', 4481: 'hotenhoffer', 4482: 'spoken', 4483: 'shareholder', 4484: 'declan', 4485: 'underpants', 4486: 'hand', 4487: 'latour', 4488: 'worth', 4489: 'i/you', 4490: 'has', 4491: 'here', 4492: 'dislike', 4493: 'skinner', 4494: 'prize', 4495: 'proud', 4496: 'weight', 4497: 'shutting', 4498: 'thrilled', 4499: 'albert', 4500: 'o', 4501: 'rims', 4502: 'lurleen', 4503: 'trench', 4504: 'wait', 4505: 'workers', 4506: 'employees', 4507: 'attached', 4508: 'rolled', 4509: 'france', 4510: 'ads', 4511: 'reentering', 4512: 'peeping', 4513: 'well-wisher', 4514: 'nobel', 4515: 'appendectomy', 4516: 'manboobs', 4517: 'co-sign', 4518: 'stops', 4519: 'smell', 4520: 'filthy', 4521: 'thanking', 4522: 'microwave', 4523: 'tobacky', 4524: 'chicken', 4525: 'colonel:', 4526: '1-800-555-hugs', 4527: 'family', 4528: 'east', 4529: 'plan', 4530: 'alfred', 4531: 'tears', 4532: 'cost', 4533: 'concerned', 4534: 'present', 4535: 'sending', 4536: 'preparation', 4537: 'krusty', 4538: 'threatening', 4539: 'center', 4540: 'failed', 4541: 'mid-conversation', 4542: 'rhode', 4543: 'race', 4544: "thinkin'", 4545: 'abandon', 4546: 'sixty-nine', 4547: 'grandkids', 4548: 'clandestine', 4549: "i'd", 4550: 'oblongata', 4551: 'sen', 4552: "isn't", 4553: 'bugging', 4554: 'joe', 4555: 'backing', 4556: 'deacon', 4557: 'majesty', 4558: 'billy_the_kid:', 4559: 'marry', 4560: 'peace', 4561: 'charlie:', 4562: "can't", 4563: 'schemes', 4564: 'poor', 4565: 'salad', 4566: 'whim', 4567: 'sounded', 4568: 'steinbrenner', 4569: 'mommy', 4570: 'all:', 4571: 'beard', 4572: 'sharps', 4573: 'suck', 4574: 'e', 4575: 'on', 4576: 'fink', 4577: 'afloat', 4578: 'tooth', 4579: 'yammering', 4580: 'fresco', 4581: 'lady-free', 4582: 'kadlubowski', 4583: 'driving', 4584: 'coherent', 4585: 'house', 4586: 'candy', 4587: 'nordiques', 4588: 'falling', 4589: 'hilton', 4590: 'oddest', 4591: 'wind', 4592: 'wonderful', 4593: 'eyeball', 4594: 'saved', 4595: 'hotline', 4596: 'bubbles', 4597: 'naively', 4598: 'donated', 4599: 'nonsense', 4600: 'terrifying', 4601: 'helpful', 4602: 'avenue', 4603: 'hardwood', 4604: 'kako:', 4605: 'helpless', 4606: 'pirate', 4607: 'giggles', 4608: 'foodie', 4609: 'bus', 4610: 'meaningless', 4611: 'sunday', 4612: 'kansas', 4613: 'swig', 4614: 'snapping', 4615: 'changing', 4616: 'managed', 4617: 'forecast', 4618: 'zone', 4619: '35', 4620: 'legs:', 4621: 'unlucky', 4622: 'grateful', 4623: 'bugs', 4624: 'male_inspector:', 4625: 'thousands', 4626: 'belly', 4627: '-ry', 4628: 'boy', 4629: 'boys', 4630: 'california', 4631: 'cuddling', 4632: 'drove', 4633: 'examples', 4634: 'championship', 4635: 'dressing', 4636: 'cool', 4637: 'dinks', 4638: 'polenta', 4639: 'store', 4640: "she's", 4641: 'root', 4642: 'early', 4643: 'lowers', 4644: 'gold', 4645: 'kissingher', 4646: 'elocution', 4647: 'physical', 4648: 'nos', 4649: 'milhouse', 4650: 'bird', 4651: 'stores', 4652: 'highway', 4653: 'ruby-studded', 4654: 'already', 4655: 'interested', 4656: 'babies', 4657: "writin'", 4658: 'fletcherism', 4659: 'lump', 4660: 'law', 4661: 'chapter', 4662: "maggie's", 4663: 'jeter', 4664: 'regretted', 4665: 'nards', 4666: 'ominous', 4667: 'passenger', 4668: 'gags', 4669: 'obese', 4670: 'defensive', 4671: "year's", 4672: 'politician', 4673: 'minute', 4674: 'glorious', 4675: 'exasperated', 4676: 'wa', 4677: 'heliotrope', 4678: "didn't", 4679: 'flag', 4680: 'wakede', 4681: 'walther', 4682: 'gee', 4683: 'over-pronouncing', 4684: 'side:', 4685: "clancy's", 4686: 'there', 4687: 'change', 4688: 'twelve', 4689: 'malabar', 4690: 'leg', 4691: 'gordon', 4692: 'ziffcorp', 4693: "should've", 4694: "fallin'", 4695: 'kicks', 4696: 'goodwill', 4697: 'arabs', 4698: 'looking', 4699: 'layer', 4700: 'express', 4701: 'pawed', 4702: 'rule', 4703: 'decency', 4704: 'promotion', 4705: 'veteran', 4706: 'counting', 4707: "chewin'", 4708: 'happily:', 4709: 'thirty-nine', 4710: 'play/', 4711: 'bowled', 4712: 'forced', 4713: 'two-thirds-empty', 4714: 'canoodling', 4715: 'may', 4716: 'eightball', 4717: 'hyahh', 4718: 'managing', 4719: 'polygon', 4720: 'astrid', 4721: 'planted', 4722: 'maiden', 4723: 'bit', 4724: 'pages', 4725: 'brown', 4726: 'name', 4727: '||question_mark||', 4728: 'jail', 4729: 'short', 4730: "team's", 4731: 'congoleum', 4732: 'despite', 4733: 'taunting', 4734: 'lord', 4735: 'celeste', 4736: 'diablo', 4737: 'salvation', 4738: 'embarrassing', 4739: 'bookie', 4740: 'priority', 4741: 'whirlybird', 4742: 'legoland', 4743: 'shtick', 4744: 'scratching', 4745: 'audience:', 4746: 'shifty', 4747: 'gesture', 4748: 'tomatoes', 4749: 'coward', 4750: 'completely', 4751: 'darn', 4752: 'wide', 4753: 'railroads', 4754: 'ding-a-ding-ding-a-ding-ding', 4755: 'intriguing', 4756: 'sing-song', 4757: 'let', 4758: 'cannot', 4759: 'gulps', 4760: 'problem', 4761: 'passion', 4762: 'knocks', 4763: 'feat', 4764: 'most', 4765: 'congratulations', 4766: 'order', 4767: 'pointless', 4768: 'tap', 4769: 'fingers', 4770: 'chorus:', 4771: 'funeral', 4772: 'tropical', 4773: "spaghetti-o's", 4774: 'el', 4775: 'reaching', 4776: 'nerd', 4777: 'pudgy', 4778: 'meyerhof', 4779: 'bones', 4780: 'packets', 4781: 'showed', 4782: 'associate', 4783: 'voice_on_transmitter:', 4784: 'southern', 4785: 'making', 4786: 'sober', 4787: 'wooden', 4788: 'murdered', 4789: 'third', 4790: 'walking', 4791: 'horrors', 4792: 'remembers', 4793: 'stopped', 4794: 'wish-meat', 4795: 'pip', 4796: 'simpsons', 4797: 'alls', 4798: 'gift:', 4799: 'continued', 4800: 'biggest', 4801: 'cats', 4802: 'bartholomé:', 4803: 'jailbird', 4804: 'copy', 4805: 'crap', 4806: 'mock', 4807: 'warning', 4808: 'ohhhh', 4809: 'paint', 4810: 'super', 4811: 'methinks', 4812: 'bowl', 4813: 'experiments', 4814: 'ripped', 4815: 'attraction', 4816: 'modern', 4817: 'sector', 4818: 'alone', 4819: 'papa', 4820: 'pointed', 4821: 'disturbance', 4822: 'cause', 4823: 'cases', 4824: 'turn', 4825: 'bump', 4826: 'self-made', 4827: 'synthesize', 4828: 'package', 4829: 'radio', 4830: 'pass', 4831: 'cobbling', 4832: 'washer', 4833: 're:', 4834: 'oopsie', 4835: 'stacey', 4836: 'chauffeur', 4837: 'trustworthy', 4838: 'albeit', 4839: 'brainiac', 4840: 'media', 4841: 'attitude', 4842: 'certified', 4843: 'helped', 4844: 'transylvania', 4845: 'irs', 4846: 'pay', 4847: 'jig', 4848: 'took', 4849: 'something', 4850: 'carolina', 4851: 'bluff', 4852: 'horror', 4853: 'smart', 4854: 'singing', 4855: 'fevered', 4856: 'aquafresh', 4857: 'lighten', 4858: 'eating', 4859: 'dealer', 4860: 'lib', 4861: 'hit', 4862: 'stories', 4863: 'refill', 4864: 'scam', 4865: 'maya', 4866: 'store-bought', 4867: 'champs', 4868: 'supposed', 4869: 'gimmick', 4870: 'am', 4871: 'heart-broken', 4872: 'offensive', 4873: 'geysir', 4874: 'hiya', 4875: 'suddenly', 4876: 'old-time', 4877: 'ticket', 4878: 'lou', 4879: 'fold', 4880: 'liquor', 4881: 'join', 4882: 'flew', 4883: 'safecracker', 4884: 'stay-puft', 4885: 'whaaaa', 4886: '1895', 4887: 'coins', 4888: 'unforgettable', 4889: 'personal', 4890: 'broad', 4891: 'jewelry', 4892: 'sat', 4893: 'allowed', 4894: 'geyser', 4895: 'fortune', 4896: "i'unno", 4897: 'possessions', 4898: 'anyhow', 4899: "let's", 4900: 'life-threatening', 4901: 'carlson', 4902: 'sun', 4903: 'louie:', 4904: 'enveloped', 4905: 'everybody', 4906: 'calling', 4907: 'moment', 4908: 'stuck', 4909: 'hard', 4910: 'these', 4911: 'nor', 4912: 'dumpster', 4913: 'jukebox', 4914: 'peter', 4915: 'broke', 4916: 'racially-diverse', 4917: 'card', 4918: 'upset', 4919: 'hundred', 4920: 'dance', 4921: 'smallest', 4922: 'threw', 4923: 'suspenders', 4924: "you've", 4925: 'permitting', 4926: 'fancy', 4927: 'nope', 4928: 'minutes', 4929: 'astronaut', 4930: 'runt', 4931: 'moan', 4932: 'so-ng', 4933: 'image', 4934: 'homer', 4935: "don't", 4936: 'reminds', 4937: 'dan_gillick:', 4938: 'notch', 4939: 'alive', 4940: 'informant', 4941: 'whip', 4942: 'pep', 4943: 'invisible', 4944: 'kegs', 4945: 'devastated', 4946: 'quadruple-sec', 4947: 'disgracefully', 4948: 'ideas', 4949: 'whoops', 4950: 'cruise', 4951: 'mac-who', 4952: 'tries', 4953: 'rice', 4954: 'classy', 4955: 'eyesore', 4956: "livin'", 4957: 'thoughtless', 4958: 'mind-numbing', 4959: 'england', 4960: 'money', 4961: 'flexible', 4962: 'relaxed', 4963: 'lisa_simpson:', 4964: 'deliberately', 4965: 'boxcars', 4966: 'seriously', 4967: 'come', 4968: 'adjourned', 4969: 'exquisite', 4970: 'spectacular', 4971: 'kings', 4972: 'lucius', 4973: 'jumping', 4974: 'stengel', 4975: 'cuz', 4976: 'choked', 4977: 'movie', 4978: 'is', 4979: 'considers', 4980: 'runners', 4981: 'attack', 4982: 'chick', 4983: 'lobster-politans', 4984: 'ran', 4985: 'nuked', 4986: 'nameless', 4987: 'mine', 4988: 'ron_howard:', 4989: 'amazing', 4990: 'brainheaded', 4991: 'exits', 4992: 'crew', 4993: 'bear', 4994: 'impeach', 4995: 'sooo', 4996: 'still', 4997: 'bulletin', 4998: 'kept', 4999: "ol'", 5000: 'louse', 5001: 'y-you', 5002: 'inexorable', 5003: 'meaningful', 5004: 'upgrade', 5005: 'bible', 5006: 'paste', 5007: 'imagine', 5008: "we're", 5009: 'legal', 5010: 'i-i-i', 5011: "sittin'", 5012: 'ma', 5013: 'raggie', 5014: 'cozies', 5015: 'sec', 5016: 'shoots', 5017: 'amiable', 5018: 'heaven', 5019: 'jay', 5020: 'starla:', 5021: 'pushes', 5022: 'column', 5023: 'blackjack', 5024: 'anywhere', 5025: 'impressed', 5026: 'written', 5027: 'slab', 5028: 'haws', 5029: 'malibu', 5030: 'transmission', 5031: 'pretzel', 5032: 'scientists', 5033: 'creature', 5034: 'golden', 5035: 'coast', 5036: 'whistling', 5037: 'crummy', 5038: 'macgregor', 5039: 'fifty', 5040: 'flack', 5041: 'reminded', 5042: 'alright', 5043: 'nachos', 5044: 'vacuum', 5045: "waitin'", 5046: 'represents', 5047: 'shirt', 5048: 'insured', 5049: 'chinese', 5050: 'bouquet', 5051: 'drawing', 5052: 'weirded-out', 5053: 'grimly', 5054: "choosin'", 5055: 'mike_mills:', 5056: 'williams', 5057: "people's", 5058: 'cheers', 5059: 'stands', 5060: 'settled', 5061: 'dumbbell', 5062: 'inning', 5063: 'decision', 5064: 'six', 5065: 'teddy', 5066: 'cries', 5067: 'pas', 5068: 'ladies', 5069: 'lachrymose', 5070: 'beast', 5071: 'grope', 5072: 'undies', 5073: 'yep', 5074: '7g', 5075: 'decided', 5076: 'scum-sucking', 5077: 'state', 5078: 'secret', 5079: 'haplessly', 5080: 'school', 5081: 'bitterly', 5082: 'changed', 5083: 'laney_fontaine:', 5084: 'rug', 5085: 'daddy', 5086: 'life-sized', 5087: 'thankful', 5088: 'ointment', 5089: 'drawn', 5090: 'stats', 5091: 'heck', 5092: 'compared', 5093: 'champ', 5094: 'pronounce', 5095: '10:15', 5096: 'ho-la', 5097: 'mid-seventies', 5098: 'sixty-five', 5099: 'befriend', 5100: 'spooky', 5101: "lefty's", 5102: 'things', 5103: 'orgasmville', 5104: 'spit', 5105: 'guessing', 5106: 'choked-up', 5107: "springfield's", 5108: 'capuchin', 5109: 'beginning', 5110: 'wussy', 5111: 'activity', 5112: 'older', 5113: 'chapel', 5114: "one's", 5115: 'cream', 5116: 'key', 5117: 'glen', 5118: 'device', 5119: 'entirely', 5120: 'sob', 5121: 'warned', 5122: 'harvesting', 5123: 'manager', 5124: 'attractive_woman_#1:', 5125: 'bad', 5126: 'crestfallen', 5127: 'encouraging', 5128: "this'll", 5129: "o'reilly", 5130: 'richer', 5131: 'slap', 5132: 'button', 5133: 'army', 5134: 'fuhgetaboutit', 5135: 'manchego', 5136: 'last', 5137: 'upn', 5138: 'painted', 5139: "city's", 5140: 'make:', 5141: 'clown', 5142: 'at', 5143: 'investor', 5144: 'tv_husband:', 5145: 'support', 5146: 'henry', 5147: "what'sa", 5148: 'eco-fraud', 5149: 'legs', 5150: 'forty-nine', 5151: 'sympathetic', 5152: 'taste', 5153: 'spied', 5154: 'department', 5155: 'ram', 5156: 'frat', 5157: 'anthony_kiedis:', 5158: 'conversion', 5159: 'shred', 5160: 'flips', 5161: 'competing', 5162: 'chunky', 5163: 'admit', 5164: 'son-of-a', 5165: 'hot', 5166: 'medicine', 5167: 'college', 5168: 'knuckle-dragging', 5169: 'life:', 5170: 'kiss', 5171: 'fledgling', 5172: 'stupidly', 5173: 'aww', 5174: 'dollars', 5175: 'nightmares', 5176: 'class', 5177: 'dear', 5178: 'roses', 5179: 'hoped', 5180: 'montrer', 5181: 'brewed', 5182: 'brusque', 5183: 'homer_', 5184: 'syrup', 5185: 'fella', 5186: 'favorite', 5187: "'roids", 5188: 'nightmare', 5189: "tree's", 5190: 'klingon', 5191: 'data', 5192: 'soup', 5193: 'teach', 5194: "tab's", 5195: 'emotion', 5196: 'gangrene', 5197: 'therapist', 5198: 'its', 5199: 'scoffs', 5200: "'s", 5201: 'cricket', 5202: 'statistician', 5203: 'cajun', 5204: 'fortress', 5205: 'badges', 5206: 'darkest', 5207: 'throws', 5208: "'topes", 5209: 'protestantism', 5210: 'poke', 5211: 'stab', 5212: 'jam', 5213: 'aw', 5214: 'lucius:', 5215: 'theme', 5216: 'getup', 5217: 'muscle', 5218: 'wooooo', 5219: 'masks', 5220: 'photographer', 5221: "here's", 5222: 'talkers', 5223: 'abe', 5224: 'shindig', 5225: 'swigmore', 5226: "now's", 5227: 'gus', 5228: 'triple-sec', 5229: 'chief', 5230: 'astronauts', 5231: "spyin'", 5232: 'eats', 5233: "homer's", 5234: 'also', 5235: 'exciting', 5236: 'put', 5237: 'lindsay_naegle:', 5238: 'switch', 5239: 'supply', 5240: 'wally:', 5241: 'sympathy', 5242: 'dum-dum', 5243: 'temples', 5244: 'heavyweight', 5245: 'shutup', 5246: 'adequate', 5247: 'hearts', 5248: 'simultaneous', 5249: 'spiritual', 5250: 'majority', 5251: 'arrived', 5252: 'aging', 5253: 'stretches', 5254: 'shoulda', 5255: 'prints', 5256: 'har', 5257: 'expert', 5258: 'slick', 5259: 'reluctant', 5260: 'seymour', 5261: 'stooges', 5262: 'perfected', 5263: 'warmly', 5264: 'courteous', 5265: 'james', 5266: "'ere", 5267: 'promised', 5268: 'ninety-seven', 5269: 'say', 5270: 'tin', 5271: 'connor-politan', 5272: 'ireland', 5273: 'mention', 5274: 'vacation', 5275: 'goal', 5276: 'amanda', 5277: 'clone', 5278: 'reserved', 5279: 'dime', 5280: "coaster's", 5281: 'direction', 5282: 'match', 5283: 'dentist', 5284: 'simple', 5285: 'smoothly', 5286: 'dropping', 5287: 'bagged', 5288: 'slop', 5289: 'cruel', 5290: "'cept", 5291: 'unison', 5292: 'kick-ass', 5293: 'lock', 5294: "i-i'll", 5295: 'floated', 5296: "pressure's", 5297: 'lookalikes', 5298: 'mouths', 5299: 'perfume', 5300: "tellin'", 5301: 'so-called', 5302: 'rewound', 5303: 'carmichael', 5304: 'oblivious', 5305: "he'll", 5306: 'stole', 5307: 'ura', 5308: "i'll", 5309: 'businessman_#2:', 5310: 'lowest', 5311: 'truck_driver:', 5312: 'barflies:', 5313: 'tender', 5314: 'presentable', 5315: 'hostile', 5316: 'boxers', 5317: 'faces', 5318: 'drapes', 5319: 'swamp', 5320: 'action', 5321: 'names', 5322: 'orphan', 5323: 'treasure', 5324: 'today/', 5325: "cupid's", 5326: 'take-back', 5327: 'meanwhile', 5328: 'firmly', 5329: 'feld', 5330: 'cowboys', 5331: "'er", 5332: 'barn', 5333: 'traffic', 5334: 'wishful', 5335: 'einstein', 5336: 'correcting', 5337: 'unhappy', 5338: 'calvin', 5339: 'sesame', 5340: 'courage', 5341: 'greystash', 5342: 'slight', 5343: 'fools', 5344: 'indeedy', 5345: 'enthused', 5346: 'squad', 5347: 'plants', 5348: 'owned', 5349: 'whisper', 5350: 'trucks', 5351: 'feminine', 5352: 'call', 5353: 'predictable', 5354: 'conditioning', 5355: 'fwooof', 5356: '||right_parentheses||', 5357: 'hole', 5358: 'steely-eyed', 5359: 'booger', 5360: 'saying', 5361: 'pickle', 5362: 'suffering', 5363: 'handler', 5364: "lenny's", 5365: 'teenage_barney:', 5366: "something's", 5367: 'four-drink', 5368: "stallin'", 5369: 'grumbling', 5370: 'gas', 5371: 'clear', 5372: 'collette:', 5373: 'toward', 5374: 'intrigued', 5375: 'either', 5376: 'open', 5377: 'horses', 5378: 'fortensky', 5379: 'exclusive:', 5380: 'whatcha', 5381: 'entering', 5382: 'drives', 5383: 'entrance', 5384: 'sniper', 5385: 'sorry', 5386: 'coaster', 5387: 'craft', 5388: 'splash', 5389: 'peach', 5390: 'freak', 5391: 'bald', 5392: 'extra', 5393: "you're", 5394: "man's_voice:", 5395: 'moe_szyslak:', 5396: 'coma', 5397: 'gore', 5398: 'sister-in-law', 5399: 'belong', 5400: 'plucked', 5401: 'shrugging', 5402: 'test-', 5403: 'occupancy', 5404: 'remembered', 5405: 'corkscrews', 5406: 'published', 5407: 'birthplace', 5408: 'sue', 5409: 'kl5-4796', 5410: 'knock-up', 5411: 'george', 5412: 'anti-intellectualism', 5413: 'throw', 5414: 'plenty', 5415: 'accidents', 5416: 'sickens', 5417: 'sneering', 5418: 'beligerent', 5419: 'ribbon', 5420: 'john', 5421: 'aristotle:', 5422: 'walk', 5423: 'hemoglobin', 5424: 'paper', 5425: 'starting', 5426: 'you-need-man', 5427: 'shack', 5428: 'guide', 5429: 'dunno', 5430: 'bachelor', 5431: 'item', 5432: 'comeback', 5433: 'lurks', 5434: 'sheepish', 5435: 'decadent', 5436: "beggin'", 5437: 'bono:', 5438: 'insightful', 5439: 'believe', 5440: 'head-gunk', 5441: 'act', 5442: 'loves', 5443: "patrick's", 5444: 'wheel', 5445: "ladies'", 5446: 'announcer:', 5447: 'and/or', 5448: 'finally', 5449: 'shame', 5450: 'sideshow_bob:', 5451: 'knows', 5452: 'leans', 5453: 'roof', 5454: 'make', 5455: 'rush', 5456: "doctor's", 5457: 'thoughts', 5458: 'intention', 5459: 'stir', 5460: 'loboto-moth', 5461: 'jolly', 5462: 'pumping', 5463: 'conclusions', 5464: 'swell', 5465: 'knew', 5466: 'near', 5467: 'public', 5468: 'tomorrow', 5469: "fendin'", 5470: 'mt', 5471: 'glasses', 5472: 'baseball', 5473: 'yello', 5474: 'flower', 5475: "bashir's", 5476: 'omigod', 5477: 'female_inspector:', 5478: 'skydiving', 5479: 'myself', 5480: 'mines', 5481: 'once', 5482: 'shreda', 5483: 'organ', 5484: 'tradition', 5485: 'multiple', 5486: 'p', 5487: 'burger', 5488: 'designer', 5489: 'sex', 5490: 'anonymous', 5491: 'mic', 5492: 'death', 5493: 'fonda', 5494: 'smurfs', 5495: 'drivers', 5496: 'tokens', 5497: 'tonic', 5498: 'partially', 5499: 'along', 5500: 'stop', 5501: 'meatpies', 5502: 'frankenstein', 5503: 'mrs', 5504: 'stalking', 5505: 'feels', 5506: 'innocent', 5507: 'new_health_inspector:', 5508: 'correct', 5509: 'diet', 5510: 'government', 5511: 'thorough', 5512: 'reluctantly', 5513: "everyone's", 5514: 'freely', 5515: 'enemies', 5516: 'expired', 5517: 'feisty', 5518: 'train', 5519: 'undated', 5520: 'reading:', 5521: 'view', 5522: 'dozen', 5523: 'offa', 5524: 'furry', 5525: 'photo', 5526: 'progress', 5527: '50%', 5528: "ma's", 5529: 'cecil_terwilliger:', 5530: 'listening', 5531: 'issues', 5532: 'prepared', 5533: 'strategizing', 5534: 'civic', 5535: 'highball', 5536: 'wok', 5537: 'oooo', 5538: 'unattractive', 5539: 'girls', 5540: 'lisa', 5541: 'sweeter', 5542: 'ned', 5543: 'italian', 5544: 'cross-country', 5545: "donatin'", 5546: 'stock', 5547: 'rob', 5548: '2', 5549: 'intervention', 5550: 'safely', 5551: 'your', 5552: 'undermine', 5553: 'reaches', 5554: 'lenford', 5555: 'hers', 5556: 'different', 5557: 'heartless', 5558: 'hideous', 5559: 'twins', 5560: 'tanking', 5561: 'tribute', 5562: 'crowd', 5563: 'white', 5564: 'pop', 5565: 'host', 5566: 'sexual', 5567: 'moving', 5568: 'tv-station_announcer:', 5569: 'winks', 5570: 'king', 5571: 'onion', 5572: 'seminar', 5573: 'refund', 5574: 'band', 5575: 'cartoons', 5576: 'miles', 5577: 'hops', 5578: 'chow', 5579: 'timbuk-tee', 5580: 'kinda', 5581: 'reckless', 5582: 'rain', 5583: 'wake', 5584: 'does', 5585: 'liar', 5586: '3', 5587: 'gets', 5588: "others'", 5589: "wonderin'", 5590: 'simon', 5591: 'finish', 5592: 'nervously', 5593: 'daniel', 5594: 'killing', 5595: 'loan', 5596: 'flanders', 5597: 'process', 5598: 'nation', 5599: 'giant', 5600: 'calmly', 5601: 'hits', 5602: 'answer', 5603: 'anxious', 5604: 'disco', 5605: 'fraud', 5606: 'wolverines', 5607: 'strap', 5608: 'chug-a-lug', 5609: 'bleeding', 5610: 'spellbinding', 5611: "cont'd:", 5612: "he's", 5613: 'twenty-nine', 5614: 'teenage', 5615: 'bedbugs', 5616: 'certainly', 5617: 'hi', 5618: 'dizer', 5619: 'coin', 5620: "professor's", 5621: 'close', 5622: 'beings', 5623: 'somewhere', 5624: 'wedding', 5625: 'single', 5626: 'journey', 5627: 'anyhoo', 5628: 'gossipy', 5629: 'tipsy', 5630: "blowin'", 5631: 'further', 5632: 'psst', 5633: 'design', 5634: 'lanes', 5635: 'ten', 5636: 'allowance', 5637: 'contact', 5638: 'counterfeit', 5639: 'kwik-e-mart', 5640: 'professional', 5641: 'spy', 5642: "sippin'", 5643: 'box', 5644: 'charity', 5645: 'labor', 5646: 'lovers', 5647: 'worry', 5648: 'sobbing', 5649: 'land', 5650: 'splattered', 5651: 'fluoroscope', 5652: 'appearance-altering', 5653: 'book_club_member:', 5654: 'extreme', 5655: 'squabbled', 5656: 'jerks', 5657: 'chin', 5658: 'mither', 5659: 'angry', 5660: 'mirror', 5661: 'facebook', 5662: 'celebrity', 5663: 'renders', 5664: 'full-bodied', 5665: 'way:', 5666: 'tow', 5667: "'pu", 5668: 'must', 5669: 'dae', 5670: 'warn', 5671: 'car', 5672: 'capitol', 5673: 'butt', 5674: 'skeptical', 5675: 'flailing', 5676: 'suit', 5677: 'underbridge', 5678: 'everywhere', 5679: 'civil', 5680: 'diamond', 5681: 'rookie', 5682: 'remain', 5683: 'cents', 5684: 'guns', 5685: 'beanbag', 5686: 'colorado', 5687: 'number', 5688: 'tells', 5689: 'gin', 5690: 'fistiana', 5691: 'wade_boggs:', 5692: 'ad', 5693: 'reader', 5694: 'boyhood', 5695: 'guzzles', 5696: 'product', 5697: 'sing', 5698: 'dangerous', 5699: 'stinky', 5700: 'protesting', 5701: 'spinning', 5702: 'trapped', 5703: 'elves:', 5704: 'washed', 5705: 'soot', 5706: 'deals', 5707: 'buffalo', 5708: 'smoker', 5709: 'sponge', 5710: 'jesus', 5711: 'saint', 5712: 'betty:', 5713: 'bachelorhood', 5714: 'insults', 5715: 'flourish', 5716: 'pinchpenny', 5717: 'fondest', 5718: 'soft', 5719: 'late', 5720: 'liven', 5721: 'phony', 5722: 'yourself', 5723: 'fry', 5724: 'earrings', 5725: 'satisfied', 5726: 'propose', 5727: 'losing', 5728: 'dint', 5729: 'angel', 5730: 'recreate', 5731: 'poin-dexterous', 5732: 'pageant', 5733: 'title:', 5734: "sat's", 5735: 'breathalyzer', 5736: 'stuff', 5737: 'occurred', 5738: 'alfalfa', 5739: "father's", 5740: "won't", 5741: "knockin'", 5742: 'pour', 5743: 'understood:', 5744: 'sideshow', 5745: "meanin'", 5746: 'delightfully', 5747: 'kid', 5748: 'mix', 5749: "yesterday's", 5750: 'around', 5751: 'bellyaching', 5752: 'monday', 5753: 'slurred', 5754: '_burns_heads:', 5755: 'sport', 5756: 'shaky', 5757: "ball's", 5758: "tony's", 5759: 'barney', 5760: 'luck', 5761: 'dash', 5762: 'powered', 5763: 'outside', 5764: "boy's", 5765: 'butter', 5766: 'those', 5767: 'donuts', 5768: 'kennedy', 5769: 'homers', 5770: 'pad', 5771: 'superior', 5772: 'pack', 5773: 'startled', 5774: 'carnival', 5775: 'sweetest', 5776: 'frescas', 5777: 'notably', 5778: 'grade', 5779: 'rutabaga', 5780: 'stripes', 5781: 'amber', 5782: 'closes', 5783: 'tapestry', 5784: 'they', 5785: 'bags', 5786: 'polite', 5787: 'lindsay', 5788: 'soap', 5789: 'handed', 5790: 'rom', 5791: 'patriotic', 5792: 'another', 5793: 'gel', 5794: 'philosophical', 5795: 'wrap', 5796: 'big', 5797: 'follow', 5798: 'sidekick', 5799: "when's", 5800: 'voters', 5801: 'icelandic', 5802: 'leave', 5803: 'pope', 5804: "nothin'", 5805: 'suppose', 5806: 'resolution', 5807: 'greatly', 5808: 'electronic', 5809: 'meet', 5810: 'filed', 5811: '||left_parentheses||', 5812: 'totally', 5813: 'yee-ha', 5814: 'pepto-bismol', 5815: 'soul', 5816: 'supports', 5817: 'cheryl', 5818: 'un-sults', 5819: "rasputin's", 5820: 'macho', 5821: "watchin'", 5822: 'nap', 5823: 'sagacity', 5824: 'bid', 5825: 'rascals', 5826: 'imaginary', 5827: 'bears', 5828: 'zero', 5829: "bein'", 5830: 'cheesecake', 5831: 'gun', 5832: 'brought', 5833: 'separator', 5834: 'actor', 5835: 'judges', 5836: 'science', 5837: 'themselves', 5838: 'lorre', 5839: 'balloon', 5840: 'meaningfully', 5841: 'dracula', 5842: 'cappuccino', 5843: 'sheets', 5844: 'winner', 5845: '91', 5846: 'man:', 5847: 'stillwater:', 5848: 'yourse', 5849: 'code', 5850: 'listened', 5851: 'swimming', 5852: 'mess', 5853: 'standards', 5854: 'manage', 5855: 'duh', 5856: 'billion', 5857: 'two', 5858: 'crisis', 5859: 'detecting', 5860: 'tenuous', 5861: 'moxie', 5862: 'space', 5863: 'tearfully', 5864: 'badmouths', 5865: 'nectar', 5866: 'feast', 5867: 'some', 5868: 'uglier', 5869: 'jacques:', 5870: 'film', 5871: 'touched', 5872: "mo'", 5873: 'wittgenstein', 5874: 'macbeth', 5875: 'enthusiasm', 5876: 'bully', 5877: 'hibachi', 5878: 'ahhhh', 5879: 'revenge', 5880: 'explaining', 5881: '||exclamation_mark||', 5882: 'everything', 5883: 'pantsless', 5884: 'corporate', 5885: 'cigars', 5886: 'tar-paper', 5887: 'brings', 5888: 'woe:', 5889: 'sweet', 5890: 'buddy', 5891: 'seductive', 5892: 'given', 5893: 'natural', 5894: "stealin'", 5895: 'desperate', 5896: '250', 5897: 'arise', 5898: 'ironic', 5899: 'boozy', 5900: 'ice', 5901: 'pews', 5902: 'just', 5903: 'badly', 5904: 'clearly', 5905: 'having', 5906: 'loathe', 5907: 'is:', 5908: 'steak', 5909: 'statue', 5910: 'sam:', 5911: 'oak', 5912: 'aggravazes', 5913: 'burglary', 5914: 'steel', 5915: 'gunter', 5916: 'fayed', 5917: 'closer', 5918: 'compliment', 5919: 'pockets', 5920: 'thirsty', 5921: 'enjoys', 5922: 'earpiece', 5923: 'hooky', 5924: 'philosophic', 5925: 'morning-after', 5926: 'scrutinizing', 5927: 'register', 5928: 'situation', 5929: 'barney_gumble:', 5930: 'drinker', 5931: 'celebrities', 5932: 'der', 5933: "callin'", 5934: 'wondering', 5935: 'overturned', 5936: 'brave', 5937: 'sarcastic', 5938: 'hangs', 5939: 'half-day', 5940: 'less', 5941: 'mcclure', 5942: 'bashir', 5943: 'confidential', 5944: 'arm-pittish', 5945: 'convenient', 5946: 'jimmy', 5947: 'overstressed', 5948: 'reactions', 5949: 'pants', 5950: 'roll', 5951: 'sub-monkeys', 5952: 'cell', 5953: 'mafia', 5954: 'floating', 5955: 'weirder', 5956: 'jerk-ass', 5957: 'healthier', 5958: 'blokes', 5959: 'emotional', 5960: 'forbids', 5961: 'island', 5962: 'not', 5963: 'beer:', 5964: 'glamour', 5965: 'test', 5966: 'his', 5967: 'multi-national', 5968: 'smiles', 5969: 'orifice', 5970: 'hafta', 5971: 'gum', 5972: 'vance', 5973: 'squishee', 5974: 'fellas', 5975: 'girl', 5976: 'picnic', 5977: 'chateau', 5978: 'message', 5979: 'broncos', 5980: 'batmobile', 5981: 'inside', 5982: 'blaze', 5983: 'scores', 5984: 'brunch', 5985: 'shard', 5986: 'trivia', 5987: 'mistakes', 5988: 'crinkly', 5989: 'peabody', 5990: 'unable', 5991: 'bupkus', 5992: 'finding', 5993: 'kick', 5994: 'wrapped', 5995: 'whining', 5996: 'dejected', 5997: "monroe's", 5998: 'poorer', 5999: 'brace', 6000: 'words', 6001: 'oughtta', 6002: 'chastity', 6003: 'fork', 6004: 'online', 6005: 'consulting', 6006: 'sings', 6007: "stayin'", 6008: 'crowded', 6009: 'everyday', 6010: 'guess', 6011: 'distaste', 6012: 'protesters', 6013: 'then', 6014: 'corn', 6015: 'placing', 6016: 'fireworks', 6017: 'amazed', 6018: 'guinea', 6019: 'jets', 6020: 'composite', 6021: "shan't", 6022: 'muslim', 6023: 'disapproving', 6024: 'tsk', 6025: 'kramer', 6026: 'backward', 6027: 'many', 6028: 'mmm', 6029: 'wobble', 6030: 'planet', 6031: 'motorcycle', 6032: 'learn', 6033: 'button-pusher', 6034: 'taps', 6035: 'nose', 6036: 'true', 6037: 'elder', 6038: 'gasoline', 6039: 'disillusioned', 6040: 'traditions', 6041: 'dignity', 6042: 'cutie', 6043: 'dude', 6044: 'later', 6045: 'open-casket', 6046: 'grubby', 6047: 'grammys', 6048: 'might', 6049: "mother's", 6050: 'ends', 6051: 'destroyed', 6052: 'fix', 6053: 'thirty-three', 6054: 'species', 6055: 'confident', 6056: 'starters', 6057: 'wave', 6058: 'mcbain', 6059: 'gone', 6060: 'reads', 6061: 'gumbo', 6062: 'dawning', 6063: 'candidate', 6064: 'lenses', 6065: 'fills', 6066: 'pontiff', 6067: "shootin'", 6068: 'bad-mouth', 6069: 'loneliness', 6070: 'loyal', 6071: 'jernt', 6072: 'x-men', 6073: 'because', 6074: 'fantastic', 6075: 'rosey', 6076: 'motto', 6077: 'cure', 6078: 'thank', 6079: 'jacques', 6080: 'lingus', 6081: 'crow', 6082: 'wipe', 6083: 'meteor', 6084: 'righ', 6085: 'dregs', 6086: 'evils', 6087: 'young_moe:', 6088: 'surprising', 6089: 'ech', 6090: 'acquaintance', 6091: 'proves', 6092: "raggin'", 6093: 'drunks', 6094: 'tight', 6095: 'julienne', 6096: 'thirteen', 6097: 'numbers', 6098: 'cheering', 6099: 'jobs', 6100: 'mustard', 6101: "mtv's", 6102: 'heroism', 6103: 'grandmother', 6104: 'padres', 6105: 'sets', 6106: 'cobra', 6107: 'michael_stipe:', 6108: 'dead', 6109: 'pre-columbian', 6110: 'trainers', 6111: 'taken', 6112: 'baritone', 6113: 'addiction', 6114: 'detective', 6115: "y'money's", 6116: 'recently', 6117: 'quimby_#2:', 6118: 'encouraged', 6119: 'arrest', 6120: 'yawns', 6121: "disrobin'", 6122: 'excuses', 6123: 'bart_simpson:', 6124: 'players', 6125: 'shhh', 6126: 'enlightened', 6127: 'ferry', 6128: 'yogurt', 6129: 'pick', 6130: 'glowers', 6131: 'depression', 6132: "children's", 6133: 'gag', 6134: 'blur', 6135: 'hooked', 6136: 'therapy', 6137: 'failure', 6138: 'stadium', 6139: 'landfill', 6140: 'wigs', 6141: 'moonlight', 6142: 'blimp', 6143: 'acronyms', 6144: "it's", 6145: 'buddha', 6146: 'knowledge', 6147: 'nevada', 6148: 'price', 6149: 'punkin', 6150: 'recent', 6151: 'shag', 6152: 'from', 6153: 'specialists', 6154: 'pizza', 6155: 'ziff', 6156: 'stools', 6157: 'referee', 6158: "coffee'll", 6159: 'labels', 6160: 'pathetic', 6161: 'lists', 6162: 'acting', 6163: 'sight', 6164: 'doy', 6165: 'abusive', 6166: 'smoke', 6167: 'affection', 6168: 'story', 6169: 'm', 6170: 'possibly', 6171: 'laugh', 6172: 'absentminded', 6173: 'raising', 6174: 'pickles', 6175: 'items', 6176: 'lowering', 6177: 'suicide', 6178: 'ignoring', 6179: 'effect', 6180: "fun's", 6181: 'grim', 6182: 'book', 6183: "high-falutin'", 6184: 'premise', 6185: 'uniforms', 6186: 'tv', 6187: 'suits', 6188: 'fury', 6189: 'weird', 6190: 'squirrels', 6191: 'dull', 6192: 'bide', 6193: 'youse', 6194: 'fly', 6195: 'misfire', 6196: 'unbelievable', 6197: 'dough', 6198: 'voice', 6199: "poundin'", 6200: 'came', 6201: 'insulin', 6202: 'romance', 6203: 'bleacher', 6204: 'sooner', 6205: 'sucked', 6206: 'bleak', 6207: 'tree_hoper:', 6208: 'yes', 6209: 'relax', 6210: 'eminence', 6211: 'shesh', 6212: 'ye', 6213: 'eddie:', 6214: 'city', 6215: "shouldn't", 6216: 'soir', 6217: 'try', 6218: 'fat_tony:', 6219: 'sponsor', 6220: 'freedom', 6221: 'day', 6222: 'jackass', 6223: 'moon-bounce', 6224: 'wacky', 6225: "enjoyin'", 6226: 'afraid', 6227: 'bars', 6228: 'owe', 6229: 'awkward', 6230: 'fair', 6231: 'president', 6232: 'tester', 6233: 'fustigation', 6234: 'wiggum', 6235: 'sugar', 6236: 'women', 6237: 'cops', 6238: 'bothered', 6239: 'owes', 6240: 'stern', 6241: 'manjula_nahasapeemapetilon:', 6242: 'side', 6243: 'man', 6244: '_hooper:', 6245: 'refreshment', 6246: 'afternoon', 6247: 'grandiose', 6248: 'dramatic', 6249: 'stunned', 6250: 'clothespins', 6251: 'rat', 6252: 'freaky', 6253: 'thought_bubble_lenny:', 6254: 'newsletter', 6255: 'hammer', 6256: 'dirty', 6257: 'richard', 6258: 'buttocks', 6259: 'comment', 6260: 'fault', 6261: 'menlo', 6262: 'edge', 6263: "heat's", 6264: 'play', 6265: 'offshoot', 6266: 'bras', 6267: 'radioactive', 6268: 'poetry', 6269: 'fell', 6270: 'pool', 6271: 'guys', 6272: 'doors', 6273: 'judge', 6274: 'wangs', 6275: 'prayers', 6276: 'patron_#2:', 6277: 'frosty', 6278: 'bulked', 6279: 'straining', 6280: 'surprise', 6281: 'breaking', 6282: "'til", 6283: 'remaining', 6284: 'drederick', 6285: 'mcstagger', 6286: 'caught', 6287: 'degradation', 6288: 'accept', 6289: "i'm-so-stupid", 6290: "aristotle's", 6291: 'pain', 6292: 'edgy', 6293: 'runs', 6294: 'al_gore:', 6295: 'universe', 6296: 'bill', 6297: 'dungeon', 6298: 'theatrical', 6299: 'win', 6300: 'ass', 6301: 'hurry', 6302: "son's", 6303: '50-60', 6304: 'disappear', 6305: 'musses', 6306: 'shush', 6307: 'precious', 6308: 'felt', 6309: 'white_rabbit:', 6310: 'job', 6311: 'lugs', 6312: 'produce', 6313: 'disappeared', 6314: 'feet', 6315: "robbin'", 6316: 'interrupting', 6317: 'indifferent', 6318: 'selling', 6319: 'tenor:', 6320: 'virtual', 6321: 'ambrose', 6322: "'em", 6323: 'yap', 6324: 'important', 6325: 'reptile', 6326: "'ceptin'", 6327: 'beached', 6328: 'rent', 6329: 'tail', 6330: 'dennis_kucinich:', 6331: 'limits', 6332: 'honor', 6333: 'for', 6334: 'gamble', 6335: 'beneath', 6336: 'ways', 6337: "can'tcha", 6338: "countin'", 6339: 'celebration', 6340: 'small_boy:', 6341: 'statesmanlike', 6342: 'aged', 6343: 'specials', 6344: 'respect', 6345: 'natured', 6346: 'dig', 6347: 'warily', 6348: 'temper', 6349: 'juice', 6350: 'soaking', 6351: 'wisconsin', 6352: 'drift', 6353: 'boo', 6354: 'japanese', 6355: 'fired', 6356: 'yard', 6357: 'case', 6358: 'jovial', 6359: 'troy:', 6360: 'mate', 6361: 'numeral', 6362: 'result', 6363: 'moe-clone', 6364: 'offense', 6365: 'laid', 6366: 'naturally', 6367: 'contract', 6368: 'kisses', 6369: 'doppler', 6370: 'hmf', 6371: 'of', 6372: "summer's", 6373: 'thru', 6374: 'andy', 6375: "g'night", 6376: 'truck', 6377: "town's", 6378: 'kidneys', 6379: 'created', 6380: 'located', 6381: 'larry', 6382: 'fourteen:', 6383: 'marge', 6384: 'awesome', 6385: "changin'", 6386: 'bed', 6387: 'kindly', 6388: 'original', 6389: 'industry', 6390: 'insist', 6391: 'playing', 6392: 'sly', 6393: 'no', 6394: 'donation', 6395: 'uncomfortable', 6396: 'father', 6397: 'round', 6398: 'child', 6399: 'democracy', 6400: 'find', 6401: "there's", 6402: "'cause", 6403: 'latin', 6404: 'savvy', 6405: "valentine's", 6406: 'drop-off', 6407: 'how', 6408: 'headhunters', 6409: "plank's", 6410: 'awwww', 6411: 'utensils', 6412: 'carefully', 6413: 'aunt', 6414: 'amused', 6415: 'refinanced', 6416: 'excellent', 6417: 'share', 6418: 'liser', 6419: 'brother-in-law', 6420: 'minus', 6421: 'stirrers', 6422: 'amends', 6423: 'tire', 6424: 'snap', 6425: "ain't", 6426: 'officials', 6427: 'happier', 6428: 'paid', 6429: 'klown', 6430: "hobo's", 6431: 'hems', 6432: 'portentous', 6433: 'venom', 6434: 'aged_moe:', 6435: 'yee-haw', 6436: 'light', 6437: 'maybe', 6438: 'leak', 6439: 'kirk_voice_milhouse:', 6440: 'ling', 6441: 'luckily', 6442: "depressin'", 6443: 'planned', 6444: 'cable', 6445: 'moon', 6446: 'alma', 6447: 'selfish', 6448: 'run', 6449: 'fruit', 6450: 'hugh:', 6451: 'sometime', 6452: 'again', 6453: 'strips', 6454: 'intense', 6455: 'newsweek', 6456: 'toms', 6457: 'stepped', 6458: 'hungry', 6459: 'lap', 6460: 'diets', 6461: 'needy', 6462: 'break', 6463: 'waylon', 6464: 'forgets', 6465: 'brakes', 6466: 'fiction', 6467: 'wheeeee', 6468: 'duke', 6469: "dad's", 6470: 'ugly', 6471: 'c', 6472: 'voicemail', 6473: 'up', 6474: 'goodbye', 6475: 'spirit', 6476: 'stairs', 6477: 'rapidly', 6478: 'wiggle-frowns', 6479: 'burnside', 6480: 'executive', 6481: 'falcons', 6482: 'she-pu', 6483: 'comfortable', 6484: 'lady', 6485: 'literature', 6486: 'sweater', 6487: 'pretty', 6488: "betsy'll", 6489: 'compadre', 6490: 'field', 6491: 'boyfriend', 6492: 'time', 6493: 'population', 6494: 'answering', 6495: 'disappointment', 6496: 'refiero', 6497: 'au', 6498: 'notices', 6499: 'thousand', 6500: 'mexicans', 6501: 'delete', 6502: 'information', 6503: 'absolut', 6504: 'nick', 6505: 'football_announcer:', 6506: 'helicopter', 6507: 'drink', 6508: 'pills', 6509: 'blinds', 6510: 'official', 6511: 'aggravated', 6512: 'xanders', 6513: 'faiths', 6514: 'barflies', 6515: 'pointing', 6516: 'kill', 6517: 'called', 6518: 'joey', 6519: 'considering:', 6520: 'horrible', 6521: 'invited', 6522: 'walther_hotenhoffer:', 6523: 'hoo', 6524: 'grabbing', 6525: 'stolen', 6526: 'united', 6527: 'showered', 6528: 'ear', 6529: 'outs', 6530: 'rag', 6531: 'tempting', 6532: 'swine', 6533: 'shrugs', 6534: 'handoff', 6535: 'alphabet', 6536: 'curious', 6537: 'routine', 6538: 'breakdown', 6539: 'dumb', 6540: 'sanctuary', 6541: 'linda', 6542: 'skirt', 6543: 'corporation', 6544: 'hammock', 6545: 'die-hard', 6546: 'tasty', 6547: 'twenty-four', 6548: 'malfeasance', 6549: 'chips', 6550: 'windelle', 6551: 'andalay', 6552: 'lessons', 6553: 'judge_snyder:', 6554: 'holidays', 6555: 'badge', 6556: 'pridesters:', 6557: "spiffin'", 6558: "rustlin'", 6559: 'boston', 6560: 'network', 6561: 'sugar-free', 6562: 'turkey', 6563: 'repeated', 6564: 'con', 6565: 'beverage', 6566: 'larson', 6567: 'flanders:', 6568: 'date', 6569: 'dateline', 6570: 'supreme', 6571: 'nuclear', 6572: 'tips', 6573: 'beer-dorf', 6574: 'scared', 6575: 'stonewall', 6576: 'squeezed', 6577: 'doreen:', 6578: 'face-macer', 6579: "snappin'", 6580: 'slobbo', 6581: 'hostages', 6582: 'color', 6583: 'prefer', 6584: 'robbers', 6585: 'p-k', 6586: 'customer', 6587: 'engine', 6588: 'dames', 6589: 'habit', 6590: 'joking', 6591: "family's", 6592: 'rumaki', 6593: 'until', 6594: 'appealing', 6595: 'regretful', 6596: 'jeff', 6597: 'gulliver_dark:', 6598: 'gentlemen', 6599: 'anarchy', 6600: "aren't", 6601: 'what-for', 6602: 'cosmetics', 6603: 'dinner', 6604: 'yea', 6605: 'troll', 6606: 'writer:', 6607: 'wildest', 6608: 'lots', 6609: 'sale', 6610: 'confidentially', 6611: 'offended', 6612: 'bite', 6613: 'bolting', 6614: 'ollie', 6615: 'conditioner', 6616: 'heading', 6617: 'mushy', 6618: 'bauer', 6619: 'actors', 6620: 'damned', 6621: 'noise', 6622: 'designated', 6623: 'idiots', 6624: "that'll", 6625: 'wound', 6626: 'my', 6627: 'bold', 6628: 'to', 6629: 'unusually', 6630: 'burt_reynolds:', 6631: 'wine', 6632: 'stay', 6633: 'belts', 6634: 'watch', 6635: 'koholic', 6636: 'tha', 6637: 'truth', 6638: 'roy', 6639: 'dry', 6640: 'tavern', 6641: 'fritz:', 6642: 'damage', 6643: 'shades', 6644: 'nahasapeemapetilon', 6645: 'chapstick', 6646: 'wounds', 6647: 'remote', 6648: 'character', 6649: 'mmmmm', 6650: 'easygoing', 6651: 'idealistic', 6652: 'liability', 6653: 'problems', 6654: 'according', 6655: 'steaming', 6656: 'scary', 6657: 'grin', 6658: 'heave-ho', 6659: 'trade', 6660: "'kay-zugg'", 6661: 'gunter:', 6662: "bo's", 6663: 'mortal', 6664: 'gestated', 6665: 'sturdy', 6666: 'cuff', 6667: 'tear', 6668: 'delicate', 6669: 'nigerian', 6670: 'where', 6671: 'saving', 6672: 'taxes', 6673: 'jacksons', 6674: 'often', 6675: 'geez', 6676: 'that', 6677: 'minimum', 6678: 'brother', 6679: 'neat', 6680: 'election', 6681: 'served', 6682: "somethin's", 6683: 'dealt', 6684: 'socialize', 6685: 'seek', 6686: 'depository', 6687: 'next', 6688: 'hollye', 6689: 'authenticity', 6690: 'crowbar', 6691: 'hired', 6692: 'tornado', 6693: 'them', 6694: 'checking', 6695: 'series', 6696: 'glitterati', 6697: 'save', 6698: 'senator', 6699: 'november', 6700: 'practically', 6701: 'renee:', 6702: 'terrific', 6703: 'johnny', 6704: 'jackpot-thief', 6705: 'hello', 6706: 'fiiiiile', 6707: 'system', 6708: 'spread', 6709: 'narrator:', 6710: 'resist', 6711: 'africa', 6712: 'ceremony', 6713: 'togetherness', 6714: 'sadly', 6715: 'obsessive-compulsive', 6716: 'swings', 6717: 'through', 6718: 'sympathizer', 6719: 'payments', 6720: 'housewife', 6721: "nothin's", 6722: 'figures', 6723: 'düff', 6724: 'eyed', 6725: 'cheaper', 6726: 'penny', 6727: 'sponsoring', 6728: 'lushmore', 6729: 'thanks', 6730: 'contemptuous', 6731: 'vodka', 6732: 'moe-ron', 6733: 'interesting', 6734: 'puts', 6735: 'imitating', 6736: 'notice', 6737: 'right-handed', 6738: 'carve', 6739: "washin'", 6740: 'barney-guarding', 6741: 'settlement', 6742: 'ballot', 6743: 'thnord', 6744: 'owns', 6745: 'states', 6746: 'jay:', 6747: 'starla', 6748: 'appeals', 6749: "jackpot's", 6750: "somethin'", 6751: 'powerful', 6752: 'nominated', 6753: 'burt', 6754: 'reality', 6755: 'evasive', 6756: 'winnings', 6757: 'off', 6758: 'hunter', 6759: 'outrageous', 6760: 'bigger', 6761: 'stood', 6762: 'movement', 6763: 'hears', 6764: 'pity', 6765: 'drunkening', 6766: "game's", 6767: 'neanderthal', 6768: 'helllp', 6769: 'inanely', 6770: 'pfft', 6771: 'directions', 6772: 'usually', 6773: 'whatsit', 6774: 'forgot', 6775: 'snide', 6776: 'specific', 6777: 'explain', 6778: 'looooooooooooooooooong'}
[  9.44027523e-09   4.75211093e-10   2.99643310e-10 ...,   1.06661527e-10
   1.09206338e-10   1.59904978e-09]

The TV Script is Nonsensical

It's ok if the TV script doesn't make any sense. We trained on less than a megabyte of text. In order to get good results, you'll have to use a smaller vocabulary or get more data. Luckly there's more data! As we mentioned in the begging of this project, this is a subset of another dataset. We didn't have you train on all the data, because that would take too long. However, you are free to train your neural network on all the data. After you complete the project, of course.

Submitting This Project

When submitting this project, make sure to run all the cells before saving the notebook. Save the notebook file as "dlnd_tv_script_generation.ipynb" and save it as a HTML file under "File" -> "Download as". Include the "helper.py" and "problem_unittests.py" files in your submission.